Skip to content
Snippets Groups Projects
Commit aef21c28 authored by Matt Kwong's avatar Matt Kwong Committed by GitHub
Browse files

Merge pull request #11520 from matt-kwong/remove_warning

Clear alarms in jobset.py when finished running jobs
parents 5678ac0c 60a672b8
No related branches found
No related tags found
No related merge requests found
......@@ -473,6 +473,8 @@ class Jobset(object):
while self._running:
if self.cancelled(): pass # poll cancellation
self.reap()
if platform_string() != 'windows':
signal.alarm(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