Author: jrose Date: Tue Oct 14 14:00:28 2014 New Revision: 425504 URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=425504 Log: Scheduler: Fix a nasty scheduler caching bug which makes new tasks not execute
Tasks that were marked for pending deletion in the scheduler would be moved to the cache for later reuse, but after being recycled the deleted mark wouldn't be removed resulting in fresh tasks being deleted without reason... and immediately moved back into the cache where they could be reused again. This could cause horrendous things to happen in just about anything that used a scheduler. ASTERISK-24321 #close Reported by: Steve Pitts Review: https://reviewboard.asterisk.org/r/4071/ ........ Merged revisions 425503 from http://svn.asterisk.org/svn/asterisk/branches/12 Modified: branches/13/ (props changed) branches/13/main/sched.c Propchange: branches/13/ ------------------------------------------------------------------------------ Binary property 'branch-12-merged' - no diff available. Modified: branches/13/main/sched.c URL: http://svnview.digium.com/svn/asterisk/branches/13/main/sched.c?view=diff&rev=425504&r1=425503&r2=425504 ============================================================================== --- branches/13/main/sched.c (original) +++ branches/13/main/sched.c Tue Oct 14 14:00:28 2014 @@ -374,6 +374,7 @@ tmp->resched = when; tmp->variable = variable; tmp->when = ast_tv(0, 0); + tmp->deleted = 0; if (sched_settime(&tmp->when, when)) { sched_release(con, tmp); } else { -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- svn-commits mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/svn-commits
