summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/compileconfig.py4
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)