DANGEROUS / TEST / DO NOT MERGE - Disable fsync
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details
continuous-integration/drone Build is failing Details

This commit is contained in:
Quentin 2022-09-24 09:21:24 +02:00
parent af2b2f26b4
commit 432131f5b8
Signed by: quentin
GPG Key ID: E9602264D639FF68
1 changed files with 3 additions and 3 deletions

View File

@ -607,7 +607,7 @@ impl BlockManagerLocked {
path2.set_extension("tmp");
let mut f = fs::File::create(&path2).await?;
f.write_all(data).await?;
f.sync_all().await?;
//f.sync_all().await?;
drop(f);
fs::rename(path2, path).await?;
@ -620,13 +620,13 @@ impl BlockManagerLocked {
// Now, we do an fsync on the containing directory, to ensure that the rename
// is persisted properly. See:
// http://thedjbway.b0llix.net/qmail/syncdir.html
let dir = fs::OpenOptions::new()
/*let dir = fs::OpenOptions::new()
.read(true)
.mode(0)
.open(directory)
.await?;
dir.sync_all().await?;
drop(dir);
drop(dir);*/
Ok(())
}