This commit is contained in:
Amber Brown 2024-11-01 11:41:03 +11:00
Родитель b84ff6e522
Коммит 40bf90e2d0
2 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -29,10 +29,8 @@ func mimoActuator(ctx context.Context, log *logrus.Entry) error {
return err
}
var keys []string
if _env.IsLocalDevelopmentMode() {
keys = []string{}
} else {
keys := []string{}
if !_env.IsLocalDevelopmentMode() {
keys = []string{
"MDM_ACCOUNT",
"MDM_NAMESPACE",

Просмотреть файл

@ -149,7 +149,6 @@ func (s *service) Run(ctx context.Context, stop <-chan struct{}, done chan<- str
go heartbeat.EmitHeartbeat(s.baseLog, s.m, "actuator.heartbeat", nil, s.checkReady)
lastGotDocs := make(map[string]*api.OpenShiftClusterDocument)
for {
if s.stopping.Load() {
break
@ -282,7 +281,10 @@ func (s *service) worker(stop <-chan struct{}, delay time.Duration, id string) {
a.AddMaintenanceTasks(s.tasks)
t := time.NewTicker(s.pollTime)
defer t.Stop()
defer func() {
log.Debugf("stopping worker for %s...", id)
t.Stop()
}()
out:
for {