msmith - in flumotion/trunk: . flumotion/worker

flumotion-commit at lists.fluendo.com flumotion-commit at lists.fluendo.com
Thu Jun 28 18:53:52 CEST 2007


Author: msmith
Date: Thu Jun 28 18:53:47 2007
New Revision: 5278

Modified:
   flumotion/trunk/ChangeLog
   flumotion/trunk/flumotion/worker/job.py
Log:
        * flumotion/worker/job.py:
          Make killJob work again by using the right variable. Jobs can now
          again be killed from the admin.



Modified: flumotion/trunk/ChangeLog
==============================================================================
--- flumotion/trunk/ChangeLog	(original)
+++ flumotion/trunk/ChangeLog	Thu Jun 28 18:53:47 2007
@@ -1,3 +1,9 @@
+2007-06-28  Michael Smith <msmith at fluendo.com>
+
+	* flumotion/worker/job.py:
+	  Make killJob work again by using the right variable. Jobs can now
+	  again be killed from the admin.
+
 2007-06-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
 
 	* flumotion/manager/manager.py (Dispatcher.setBouncer):

Modified: flumotion/trunk/flumotion/worker/job.py
==============================================================================
--- flumotion/trunk/flumotion/worker/job.py	(original)
+++ flumotion/trunk/flumotion/worker/job.py	Thu Jun 28 18:53:47 2007
@@ -349,7 +349,7 @@
         common.signalPid(jobInfo.pid, signum)
 
     def killJob(self, avatarId, signum):
-        for job in self.jobInfos.values():
+        for job in self._jobInfos.values():
             if job.avatarId == avatarId:
                 self.killJobByPid(job.pid, signum)
 


More information about the flumotion-commit mailing list