Skip to content

Commit

Permalink
fix: int overflow on arm7
Browse files Browse the repository at this point in the history
  • Loading branch information
kolesnikovae committed Aug 19, 2024
1 parent 3d63809 commit aca19e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/experiment/metastore/metastore_boltdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
const (
boltDBFileName = "metastore.boltdb"
boltDBSnapshotName = "metastore_snapshot.boltdb"
boltDBInitialMmapSize = 2 << 30
boltDBInitialMmapSize = 1 << 30
)

type boltdb struct {
Expand Down

0 comments on commit aca19e4

Please sign in to comment.