mirror of https://github.com/grafana/grafana.git
WIP: Skip this call when we skip migrations (#31216)
This commit is contained in:
parent
d33375ade9
commit
e17198af83
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue