kenho811 commented on issue #48719:
URL: https://github.com/apache/airflow/issues/48719#issuecomment-3193447344
> Not sure if this is the same issue, but I'm seeing my tasks getting a
similar message well before any timeout should occur.
>
> ```
> [2025-06-02, 11:28:31] INFO - Crawling pages: 34%|████████▉
| 70/205 [24:23<05:09, 2.29s/it]:
source="airflow.task.hooks.airflow.providers.ssh.hooks.ssh.SSHHook"
> [2025-06-02, 11:28:36] ERROR - Server indicated the task shouldn't be
running anymore. Terminating process:
detail={"detail":{"reason":"not_running","message":"TI is no longer in the
running state and task should terminate","current_state":"skipped"}}:
source="task"
> [2025-06-02, 11:28:36] ERROR - Task killed!: source="task"
> ```
>
> I'm not sure what to make of the error either. "Server indicated the task
shouldn't be running anymore"? What does that mean?
Hi @adamjgrant
I had a similar issue, and that was due to me setting a dag timeout
parameter on the DAG level. like this
```
@dag(dag_id=dag_id
dagrun_timeout=datetime.timedelta(minutes=20)
),
```
Would this be a possible cause of your issue as well?
--
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]