Update perms for group read (#1876)

This commit is contained in:
Laurence Jones 2022-11-21 09:49:56 +00:00 committed by GitHub
parent 99513f64fd
commit 4ac01ed880
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,7 +74,7 @@ func NewClient(config *csconfig.DatabaseCfg) (*Client, error) {
}
}
//Always try to set permissions to simplify a bit the code for windows (as the permissions set by OpenFile will be garbage)
if err := setFilePerm(config.DbPath, 0600); err != nil {
if err := setFilePerm(config.DbPath, 0640); err != nil {
return &Client{}, fmt.Errorf("unable to set perms on %s: %v", config.DbPath, err)
}
var sqliteConnectionStringParameters string