You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func Scheduled(j interface{}) bool will crash when the answer if false
The function loops over all defaultScheduler.jobs which may (and probably will be) at least partially nil (if not all MAXJOBNUM are used).
Every loop over this array must be using the index and run up to size.
This is true also for func (s *Scheduler) Scheduled(j interface{}) bool
The text was updated successfully, but these errors were encountered:
func Scheduled(j interface{}) bool
will crash when the answer if falseThe function loops over all defaultScheduler.jobs which may (and probably will be) at least partially nil (if not all MAXJOBNUM are used).
Every loop over this array must be using the index and run up to size.
This is true also for
func (s *Scheduler) Scheduled(j interface{}) bool
The text was updated successfully, but these errors were encountered: