Skip to content

Commit f804bb6

Browse files
authored
Merge pull request #6819 from ipfs/chore/badger-no-sync
fix(badgerds): turn off sync writes by default
2 parents ff26934 + 4e4d5aa commit f804bb6

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)