Sherlock-Holo / fuse3

an async version fuse library for rust
MIT License
83 stars 17 forks source link

out of order execution #103

Open FlorianLudwig opened 3 months ago

FlorianLudwig commented 3 months ago

When running multiple commands it seems that they have to finish in order.

For example when running:

tokio::time::sleep(tokio::time::Duration::from_millis(100_000)).await;

in the implementation of one of the commands and triggering it, the whole file systems seem to come to a hold.