Add log when tasks are stopped
continuous-integration/drone/push Build is passing Details

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

View File

@ -117,6 +117,8 @@ func ScheduleAndRunJobs(jobs []Job) error {
<-ctx.Done()
}()
fmt.Println("All jobs successfully stopped")
return nil
}