From: msweet Date: Wed, 24 Jun 2015 20:01:28 +0000 (+0000) Subject: The scheduler did not start all pending jobs at once (STR #4646) X-Git-Tag: v2.2b1~246 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93d3b4feef3f07415130d1cda22059c14f294c74;p=thirdparty%2Fcups.git The scheduler did not start all pending jobs at once (STR #4646) git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12758 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/CHANGES-2.0.txt b/CHANGES-2.0.txt index 73a0c7529b..55a4eb777b 100644 --- a/CHANGES-2.0.txt +++ b/CHANGES-2.0.txt @@ -6,6 +6,7 @@ CHANGES IN CUPS V2.0.4 - Fixed a bug in cupsRasterWritePixels (STR #4650) - Fixed redirection in the web interface (STR #4538) - The IPP backend did not respond to side-channel requests (STR #4645) + - The scheduler did not start all pending jobs at once (STR #4646) CHANGES IN CUPS V2.0.3 diff --git a/scheduler/job.c b/scheduler/job.c index 956f9ffa9f..82c5306d63 100644 --- a/scheduler/job.c +++ b/scheduler/job.c @@ -392,7 +392,9 @@ cupsdCheckJobs(void) * Start the job... */ + cupsArraySave(ActiveJobs); start_job(job, printer); + cupsArrayRestore(ActiveJobs); } } }