WIP: Skip this call when we skip migrations (#31216)

This commit is contained in:
Dafydd
2021-02-15 11:57:20 +00:00
committed by GitHub
parent d33375ade9
commit e17198af83
+4 -2
View File
@@ -117,8 +117,10 @@ func (ss *SQLStore) Init() error {
return err
}
// Make sure the changes are synced, so they get shared with eventual other DB connections
if err := ss.Sync(); err != nil {
return err
if !ss.dbCfg.SkipMigrations {
if err := ss.Sync(); err != nil {
return err
}
}
return nil