Switch notifier to scheduler

This commit is contained in:
Asim Aslam
2020-01-16 13:34:04 +00:00
parent 689ae7cfc7
commit 491a42d352
4 changed files with 20 additions and 20 deletions

View File

@@ -290,9 +290,9 @@ func (r *runtime) Start() error {
r.closed = make(chan bool)
var events <-chan Event
if r.options.Notifier != nil {
if r.options.Scheduler != nil {
var err error
events, err = r.options.Notifier.Notify()
events, err = r.options.Scheduler.Notify()
if err != nil {
// TODO: should we bail here?
log.Debugf("Runtime failed to start update notifier")
@@ -327,9 +327,9 @@ func (r *runtime) Stop() error {
log.Debugf("Runtime stopping %s", service.Name)
service.Stop()
}
// stop the notifier too
if r.options.Notifier != nil {
return r.options.Notifier.Close()
// stop the scheduler
if r.options.Scheduler != nil {
return r.options.Scheduler.Close()
}
}