scheduler: fix linter errors
Fix errors reported by default golangci-lint linters
This commit is contained in:
parent
e508993d93
commit
f80cb15cd6
|
@ -190,6 +190,7 @@ func NewScheduler(c *config.Scheduler) (*Scheduler, error) {
|
|||
}
|
||||
|
||||
return &Scheduler{
|
||||
c: c,
|
||||
runserviceClient: rsapi.NewClient(c.RunserviceURL),
|
||||
}, nil
|
||||
}
|
||||
|
@ -198,9 +199,8 @@ func (s *Scheduler) Run(ctx context.Context) error {
|
|||
go s.scheduleLoop(ctx)
|
||||
go s.approveLoop(ctx)
|
||||
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
<-ctx.Done()
|
||||
log.Infof("scheduler exiting")
|
||||
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue