You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found that after a symlink is created, for example with command ln -s name link, the command ls -la will show the symlink as path -> '' rather than path -> name. I removed line 754 of file /src/raw/session.rs (i.e., reply_flags |= FUSE_CACHE_SYMLINKS), the symlink can then be created and read normally. What would be the possible cause of this? I'm also investigating it.
The text was updated successfully, but these errors were encountered:
I found that after a symlink is created, for example with command
ln -s name link
, the commandls -la
will show the symlink aspath -> ''
rather thanpath -> name
. I removed line 754 of file/src/raw/session.rs
(i.e.,reply_flags |= FUSE_CACHE_SYMLINKS
), the symlink can then be created and read normally. What would be the possible cause of this? I'm also investigating it.The text was updated successfully, but these errors were encountered: