When using the newest Airflow version (2.4.2), the on_failure_callback doesnt get triggered on KubernetesPodOperator tasks. The on_success_callback works just fine.
For each KubernetesPodOperator task I set on_success_callback=send_success_notification() and on_failure_callback=send_failure_notification().
If the task succeeds, the notification gets send. However, in case of failure, the on_failure_callback doesn't get triggered. Is this some bug related to newest version?