diff --git a/pkg/plugins/update_checker.go b/pkg/plugins/update_checker.go index b619310a918..2067ea3af46 100644 --- a/pkg/plugins/update_checker.go +++ b/pkg/plugins/update_checker.go @@ -26,7 +26,10 @@ func StartPluginUpdateChecker() { return } - ticker := time.NewTicker(time.Second * 24) + // do one check directly + go checkForUpdates() + + ticker := time.NewTicker(time.Minute * 10) for { select { case <-ticker.C: diff --git a/public/app/features/plugins/partials/plugin_edit.html b/public/app/features/plugins/partials/plugin_edit.html index 46971bd35e7..402e2f24c3f 100644 --- a/public/app/features/plugins/partials/plugin_edit.html +++ b/public/app/features/plugins/partials/plugin_edit.html @@ -56,9 +56,7 @@

Version

{{ctrl.model.info.version}}
- - Update Available! - + Update Available!
diff --git a/public/app/features/plugins/partials/update_instructions.html b/public/app/features/plugins/partials/update_instructions.html index 7027ebf7154..80e3a413d1d 100644 --- a/public/app/features/plugins/partials/update_instructions.html +++ b/public/app/features/plugins/partials/update_instructions.html @@ -2,7 +2,7 @@