This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch lazy-reader in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
commit 64c1f8f0daedfeef1b6438bbed9fe73eec783d7d Author: Xuanwo <git...@xuanwo.io> AuthorDate: Fri Oct 27 17:34:20 2023 +0800 Remove file after succeed Signed-off-by: Xuanwo <git...@xuanwo.io> --- core/fuzz/fuzz_reader.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/fuzz/fuzz_reader.rs b/core/fuzz/fuzz_reader.rs index d4af06d60..f00fa9151 100644 --- a/core/fuzz/fuzz_reader.rs +++ b/core/fuzz/fuzz_reader.rs @@ -251,6 +251,7 @@ async fn fuzz_reader(op: Operator, input: FuzzInput) -> Result<()> { } } + op.delete(&input.path).await?; Ok(()) }