diff options
Diffstat (limited to 'tools/compileconfig.py')
-rwxr-xr-x | tools/compileconfig.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/compileconfig.py b/tools/compileconfig.py index c2463df..b4e4e46 100755 --- a/tools/compileconfig.py +++ b/tools/compileconfig.py @@ -316,6 +316,10 @@ def gen_config(nodename, config, localconfig): plopconfig += [ (Symbol("db_backend"), Symbol(dbbackend)), ] + if dbbackend != "fsdb": + plopconfig += [ + (Symbol("fsync_parallel_tasks"), 4), + ] if dbbackend == "permdb" and len(localconfig["localnodes"]) != 1: print >>sys.stderr, "When using permdb, all services have to be in the same node" sys.exit(1) |