Skip to content
Snippets Groups Projects
Commit 60a672b8 authored by Matt Kwong's avatar Matt Kwong
Browse files

Clear alarms in jobset.py when finished running jobs

parent 8961a10c
No related branches found
No related tags found
No related merge requests found
...@@ -473,6 +473,8 @@ class Jobset(object): ...@@ -473,6 +473,8 @@ class Jobset(object):
while self._running: while self._running:
if self.cancelled(): pass # poll cancellation if self.cancelled(): pass # poll cancellation
self.reap() self.reap()
if platform_string() != 'windows':
signal.alarm(0)
return not self.cancelled() and self._failures == 0 return not self.cancelled() and self._failures == 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment