Merge pull request #4094 from martinetd/btrfs

preallocateContents option: disable by default
This commit is contained in:
Eelco Dolstra 2020-11-26 15:01:43 +01:00 committed by GitHub
commit 2458270b69
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@ struct ArchiveSettings : Config
#endif
"use-case-hack",
"Whether to enable a Darwin-specific hack for dealing with file name collisions."};
Setting<bool> preallocateContents{this, true, "preallocate-contents",
Setting<bool> preallocateContents{this, false, "preallocate-contents",
"Whether to preallocate files when writing objects with known size."};
};