Skip to content

Commit aca19e4

Browse files
committed
fix: int overflow on arm7
1 parent 3d63809 commit aca19e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/experiment/metastore/metastore_boltdb.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
const (
2020
boltDBFileName = "metastore.boltdb"
2121
boltDBSnapshotName = "metastore_snapshot.boltdb"
22-
boltDBInitialMmapSize = 2 << 30
22+
boltDBInitialMmapSize = 1 << 30
2323
)
2424

2525
type boltdb struct {

0 commit comments

Comments
 (0)