You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/03/16 15:37:56 UTC

[GitHub] [airflow] esc commented on issue #11451: AttributeError: Can't pickle local object 'DaskExecutor.execute_async..airflow_run'

esc commented on issue #11451:
URL: https://github.com/apache/airflow/issues/11451#issuecomment-800371224


   I had the same issue and this fixed it for me:
   
   https://github.com/uqfoundation/dill/issues/383#issuecomment-684979223
   
   ```
   # workaround from https://github.com/uqfoundation/dill/issues/383
   import dill
   dill.extend(False)
   import cloudpickle
   dill.extend(True)
   ```


----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org