matthias-koch commented on code in PR #4658:
URL: https://github.com/apache/zeppelin/pull/4658#discussion_r1329929386


##########
zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/NoteManager.java:
##########
@@ -247,7 +247,7 @@ public void moveNote(String noteId,
     this.notebookRepo.move(noteId, notePath, newNotePath, subject);
 
     // Update path of the note
-    if (!StringUtils.equalsIgnoreCase(notePath, newNotePath)) {
+    if (!notePath.equals(newNotePath)) {

Review Comment:
   Git: case sensitive
   Hadoop: case sensitive
   S3: case sensitive
   Azure: case sensitive
   Google Cloud Storage: case sensitive
   Aliyun OSS: case sensitive
   MongoDB: case sensitive
   Github: case sensitive
   
   It seems we are safe.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to