mirror of
https://github.com/getredash/redash.git
synced 2025-12-25 01:03:20 -05:00
Job: when cancelling send SIGKILL instead of SIGINT.
This commit is contained in:
@@ -78,7 +78,7 @@ class Job(object):
|
||||
return
|
||||
|
||||
if self.status == self.PROCESSING:
|
||||
os.kill(self.process_id, signal.SIGINT)
|
||||
os.kill(self.process_id, signal.SIGKILL)
|
||||
else:
|
||||
self.done(None, "Interrupted/Cancelled while running.")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user