mirror of
https://github.com/go-gitea/gitea
synced 2025-07-27 04:38:36 +00:00
fix: skip initing bots storage if disabled
This commit is contained in:
@@ -206,6 +206,10 @@ func initPackages() (err error) {
|
||||
}
|
||||
|
||||
func initBots() (err error) {
|
||||
if !setting.Bots.Enabled {
|
||||
Bots = discardStorage("Bots isn't enabled")
|
||||
return nil
|
||||
}
|
||||
log.Info("Initialising Bots storage with type: %s", setting.Bots.Storage.Type)
|
||||
Bots, err = NewStorage(setting.Bots.Storage.Type, &setting.Bots.Storage)
|
||||
return err
|
||||
|
Reference in New Issue
Block a user