Merge pull request 'db: Change db file mode to 660' (#62) from issue-58 into master

This commit is contained in:
mrngm 2020-06-28 12:15:57 +02:00
commit badc22b8d0
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ func OpenDB(path string, fs *FileStore) (*Database, error) {
return nil, errors.New("database not set")
}
db, err := bolt.Open(path, 0666, &bolt.Options{Timeout: 1 * time.Second})
db, err := bolt.Open(path, 0660, &bolt.Options{Timeout: 1 * time.Second})
if err != nil {
return nil, errors.Wrapf(err, "failed to open database at '%v'", path)
}