Skip to content

Commit

Permalink
fix: int overflow on arm7 (#3499)
Browse files Browse the repository at this point in the history
  • Loading branch information
kolesnikovae authored Aug 19, 2024
1 parent 3d63809 commit e97c746
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 e97c746

Please sign in to comment.