srkukarni closed pull request #2514: Use SigKill to kill python process as
opposed to sigterm which can be caught
URL: https://github.com/apache/incubator-pulsar/pull/2514
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/pulsar-functions/instance/src/main/python/python_instance.py
b/pulsar-functions/instance/src/main/python/python_instance.py
index ce99020fd5..b43b882a2e 100644
--- a/pulsar-functions/instance/src/main/python/python_instance.py
+++ b/pulsar-functions/instance/src/main/python/python_instance.py
@@ -148,7 +148,7 @@ def health_check(self):
def process_spawner_health_check_timer(self):
if time.time() - self.last_health_check_ts > 90:
Log.critical("Haven't received health check from spawner in a while.
Stopping instance...")
- os.kill(os.getpid(), signal.SIGTERM)
+ os.kill(os.getpid(), signal.SIGKILL)
sys.exit(1)
Timer(30, self.process_spawner_health_check_timer).start()
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services