Move log line to the proper location
continuous-integration/drone/push Build is passing Details

This commit is contained in:
IamTheFij 2024-01-22 08:50:49 -08:00
parent bea338c27a
commit 7b313b8f9b
1 changed files with 2 additions and 2 deletions

View File

@ -115,9 +115,9 @@ func ScheduleAndRunJobs(jobs []Job) error {
defer func() {
ctx := scheduler.Stop()
<-ctx.Done()
}()
fmt.Println("All jobs successfully stopped")
fmt.Println("All jobs successfully stopped")
}()
return nil
}