uranusjr commented on code in PR #42304:
URL: https://github.com/apache/airflow/pull/42304#discussion_r1770761779
##########
airflow/jobs/scheduler_job_runner.py:
##########
@@ -200,6 +200,7 @@ def register_signals(self) -> None:
"""Register signals that stop child processes."""
signal.signal(signal.SIGINT, self._exit_gracefully)
signal.signal(signal.SIGTERM, self._exit_gracefully)
+ signal.signal(signal.SIGUSR1, self._log_memoery_usage)
Review Comment:
```suggestion
signal.signal(signal.SIGUSR1, self._log_memory_usage)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]