Browse Source

Unnecessary go routine spawn. (#7951)

Signed-off-by: fuling <fuling.lgz@alibaba-inc.com>
pull/7065/head
李国忠 4 years ago committed by GitHub
parent
commit
4a52faf2ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      rules/manager.go

12
rules/manager.go

@ -954,14 +954,12 @@ func (m *Manager) Update(interval time.Duration, files []string, externalLabels
oldg.stop()
newg.CopyState(oldg)
}
go func() {
// Wait with starting evaluation until the rule manager
// is told to run. This is necessary to avoid running
// queries against a bootstrapping storage.
<-m.block
newg.run(m.opts.Context)
}()
wg.Done()
// Wait with starting evaluation until the rule manager
// is told to run. This is necessary to avoid running
// queries against a bootstrapping storage.
<-m.block
newg.run(m.opts.Context)
}(newg)
}

Loading…
Cancel
Save