Skip to content

Commit 4e4d5aa

Browse files
committed
fix(badgerds): turn off sync writes by default
We already do this in the datastore _profile_, but we should do this in the plugin as well. I'm pretty sure this makes absolutely no difference.
1 parent 7d2f39b commit 4e4d5aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/plugins/badgerds/badgerds.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func (*badgerdsPlugin) DatastoreConfigParser() fsrepo.ConfigFromMap {
6060

6161
sw, ok := params["syncWrites"]
6262
if !ok {
63-
c.syncWrites = true
63+
c.syncWrites = false
6464
} else {
6565
if swb, ok := sw.(bool); ok {
6666
c.syncWrites = swb

0 commit comments

Comments
 (0)