mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
prevents default create/open of buntdb, requires user to call initdb
This commit is contained in:
parent
55503961cb
commit
c20afab7c2
@ -81,6 +81,10 @@ func OpenDatabase(config *Config) (*buntdb.DB, error) {
|
||||
|
||||
// open the database, giving it at most one chance to auto-upgrade the schema
|
||||
func openDatabaseInternal(config *Config, allowAutoupgrade bool) (db *buntdb.DB, err error) {
|
||||
_, err = os.Stat(config.Datastore.Path)
|
||||
if os.IsNotExist(err) {
|
||||
return
|
||||
}
|
||||
db, err = buntdb.Open(config.Datastore.Path)
|
||||
if err != nil {
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user