Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
diqiu50 committed Jan 13, 2025
1 parent 1b8a949 commit 016aec2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gvfs-fuse-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
./gradlew compileDistribution -x :clients:client-python:build -x test -x web -PjdkVersion=${{ matrix.java-version }}
cd clients/filesystem-fuse
make test-s3
make test-fuse
make test-fuse-it
- name: Free up disk space
run: |
Expand Down
2 changes: 1 addition & 1 deletion clients/filesystem-fuse/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ doc-test:
unit-test: doc-test
cargo test --no-fail-fast --lib --all-features --workspace

test-fuse:
test-fuse-it:
@bash ./tests/bin/run_fuse_testers.sh test

test-s3:
Expand Down
1 change: 1 addition & 0 deletions clients/filesystem-fuse/src/default_raw_filesystem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ impl<T: PathFileSystem> RawFileSystem for DefaultRawFileSystem<T> {
let mut file = opened_file.lock().await;
file.close().await
} else {
// If the file has been deleted, it does not cause a leak even if it has not been closed.
Ok(())
}
}
Expand Down

0 comments on commit 016aec2

Please sign in to comment.