Skip to content
Advertisement

AirFlowException – Python_Callable must be callable

I made a small change to an existing workflow, and it has broken airflow. Here is the code:

JavaScript

Here is the error I’m receiving:

airflow.exceptions.AirflowException: python_callable param must be callable

Advertisement

Answer

seems like you are passing trigger_report itself as the python_callable.

Is this intentional? does it already have a value?
(probably, otherwise you would’ve gotten a NameError: name 'trigger_report' is not defined)

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement