Loading cloudcontrol/node/jobs.py +4 −3 Original line number Diff line number Diff line Loading @@ -333,9 +333,10 @@ class ForkedJob(object): if return_status & 0xff == signal.SIGKILL: logger.error('Job was killed') else: raise JobError('Exception during job, returned %s, signal %s', raise JobError('Exception during job, returned %s, signal' ' %s' % ( return_status, num_to_sig(return_status & 0xff)) num_to_sig(return_status & 0xff))) finally: self.fork_pid = None self.job_done.set() Loading Loading
cloudcontrol/node/jobs.py +4 −3 Original line number Diff line number Diff line Loading @@ -333,9 +333,10 @@ class ForkedJob(object): if return_status & 0xff == signal.SIGKILL: logger.error('Job was killed') else: raise JobError('Exception during job, returned %s, signal %s', raise JobError('Exception during job, returned %s, signal' ' %s' % ( return_status, num_to_sig(return_status & 0xff)) num_to_sig(return_status & 0xff))) finally: self.fork_pid = None self.job_done.set() Loading