Browse Source
Merge pull request #1277 from trapexit/flushdefault
Set flush-on-close default to opened-for-write
pull/1283/head
trapexit
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/config.cpp
|
@ -94,7 +94,7 @@ Config::Config() |
|
|
category(func), |
|
|
category(func), |
|
|
direct_io(false), |
|
|
direct_io(false), |
|
|
dropcacheonclose(false), |
|
|
dropcacheonclose(false), |
|
|
flushonclose(FlushOnClose::ENUM::ALWAYS), |
|
|
flushonclose(FlushOnClose::ENUM::OPENED_FOR_WRITE), |
|
|
follow_symlinks(FollowSymlinks::ENUM::NEVER), |
|
|
follow_symlinks(FollowSymlinks::ENUM::NEVER), |
|
|
fsname(), |
|
|
fsname(), |
|
|
func(), |
|
|
func(), |
|
|
xxxxxxxxxx