mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Add AwaitHealthy to ModuleEngine and Server (#72215)
* Chore: Add AwaitHealthy to ModuleEngine and Server * switch from fmt.Errorf to errors.New Co-authored-by: Will Browne <wbrowne@users.noreply.github.com> --------- Co-authored-by: Will Browne <wbrowne@users.noreply.github.com>
This commit is contained in:
@@ -15,6 +15,7 @@ import (
|
||||
)
|
||||
|
||||
type Engine interface {
|
||||
AwaitHealthy(context.Context) error
|
||||
Init(context.Context) error
|
||||
Run(context.Context) error
|
||||
Shutdown(context.Context) error
|
||||
@@ -59,6 +60,14 @@ func ProvideService(
|
||||
}
|
||||
}
|
||||
|
||||
// AwaitHealthy waits for all registered modules to be healthy.
|
||||
func (m *service) AwaitHealthy(ctx context.Context) error {
|
||||
if m.serviceManager == nil {
|
||||
return errors.New("service manager has not been initialized")
|
||||
}
|
||||
return m.serviceManager.AwaitHealthy(ctx)
|
||||
}
|
||||
|
||||
// Init initializes all registered modules.
|
||||
func (m *service) Init(_ context.Context) error {
|
||||
var err error
|
||||
|
||||
@@ -27,9 +27,17 @@ func (m *MockModuleManager) RegisterInvisibleModule(name string, initFn func() (
|
||||
}
|
||||
|
||||
type MockModuleEngine struct {
|
||||
InitFunc func(context.Context) error
|
||||
RunFunc func(context.Context) error
|
||||
ShutdownFunc func(context.Context) error
|
||||
AwaitHealthyFunc func(context.Context) error
|
||||
InitFunc func(context.Context) error
|
||||
RunFunc func(context.Context) error
|
||||
ShutdownFunc func(context.Context) error
|
||||
}
|
||||
|
||||
func (m *MockModuleEngine) AwaitHealthy(ctx context.Context) error {
|
||||
if m.AwaitHealthyFunc != nil {
|
||||
return m.AwaitHealthyFunc(ctx)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *MockModuleEngine) Init(ctx context.Context) error {
|
||||
|
||||
Reference in New Issue
Block a user