This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 2a10ae9c95d Fix docs sigkill mention (#55690)
2a10ae9c95d is described below

commit 2a10ae9c95d1e771ea0fb1930c7de25f9b7cea69
Author: Daniel Standish <[email protected]>
AuthorDate: Mon Sep 15 11:04:12 2025 -0700

    Fix docs sigkill mention (#55690)
    
    Exit code -9 is sigkill not sigterm.  Fixup of #55602.
---
 airflow-core/docs/troubleshooting.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow-core/docs/troubleshooting.rst 
b/airflow-core/docs/troubleshooting.rst
index b5c904cac96..b0f786469e4 100644
--- a/airflow-core/docs/troubleshooting.rst
+++ b/airflow-core/docs/troubleshooting.rst
@@ -53,7 +53,7 @@ Out of memory error (OOM)
 """""""""""""""""""""""""
 
 When a task process consumes too much memory for a worker, the best case 
scenario is it is killed
-with SIGTERM (exit code -9). Depending on configuration and infrastructure, it 
is also
+with SIGKILL (exit code -9). Depending on configuration and infrastructure, it 
is also
 possible that the whole worker will be killed due to OOM and then the tasks 
would be marked as
 failed after failing to heartbeat.
 

Reply via email to