-
|
[airflow 3.0.3] Hi, When I run this the external_python task Using pickle also gives an error: When I pass a string like When I remove the external_python task So I am wondering why airflow wants to pickle my |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
Hi bobojobo, I’m learning Airflow and this is interesting! |
Beta Was this translation helpful? Give feedback.
-
|
For future ref: to That made it work. (I also upgraded to airflow 3.1.3, where I saw the same error occur for the new structlog) |
Beta Was this translation helpful? Give feedback.
For future ref:
I changed from
def pre(**kwargs):
print("preparing...")
to
def pre(params):
print("preparing...")
That made it work.
(I also upgraded to airflow 3.1.3, where I saw the same error occur for the new structlog)