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
+1 -1
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."};
};