Xuanwo commented on code in PR #3655:
URL: 
https://github.com/apache/incubator-opendal/pull/3655#discussion_r1403093821


##########
core/src/services/azfile/core.rs:
##########
@@ -417,8 +417,8 @@ impl AzfileCore {
         // azure file service does not support recursive directory creation
         let mut p = path;
         while p != "/" {
-            p = get_parent(p);
             dirs.push_front(p);
+            p = get_parent(p);

Review Comment:
   > Still I'm not sure the meaning of `normalize the root` from the issue 
since I haven't found something wrong about it. Could you give me a hint?
   
   normalize root is about the code here:
   
   
https://github.com/apache/incubator-opendal/blob/0711e6ce97660380628b72a010d092fd29ec9553/core/src/services/azfile/backend.rs#L161
   
   But we have already done that. So it might not be the root cause.



-- 
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