From 87730440ee0b0e79849e453f7cb4f89e2210808e Mon Sep 17 00:00:00 2001 From: Kelvin Wang Date: Wed, 31 Jul 2019 16:02:08 -0400 Subject: [PATCH] feat(cmd/launcher): add check to launcher --- cmd/influxd/launcher/launcher.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/influxd/launcher/launcher.go b/cmd/influxd/launcher/launcher.go index 21ae9a9c21..995ef8b3ae 100644 --- a/cmd/influxd/launcher/launcher.go +++ b/cmd/influxd/launcher/launcher.go @@ -456,6 +456,7 @@ func (m *Launcher) run(ctx context.Context) (err error) { secretSvc platform.SecretService = m.kvService lookupSvc platform.LookupService = m.kvService notificationRuleSvc platform.NotificationRuleStore = m.kvService + checkSvc platform.CheckService = m.kvService ) switch m.secretStore { @@ -627,6 +628,7 @@ func (m *Launcher) run(ctx context.Context) (err error) { TaskService: taskSvc, TelegrafService: telegrafSvc, NotificationRuleStore: notificationRuleSvc, + CheckService: checkSvc, ScraperTargetStoreService: scraperTargetSvc, ChronografService: chronografSvc, SecretService: secretSvc,