VladaZakharova commented on code in PR #38531:
URL: https://github.com/apache/airflow/pull/38531#discussion_r1555416136


##########
airflow/models/taskinstance.py:
##########
@@ -1287,7 +1287,7 @@ class TaskInstance(Base, LoggingMixin):
     queued_dttm = Column(UtcDateTime)
     queued_by_job_id = Column(Integer)
     pid = Column(Integer)
-    executor_config = Column(ExecutorConfigType(pickler=dill))
+    executor_config = Column(ExecutorConfigType(pickler=cloudpickle))

Review Comment:
   Maybe we can use in this case here another package, like pickle? I think 
this is not an optional dependency, so maybe here, until we can fully replace 
dill with cloudpickle, we can use pickle. The same way we are using it in 
places where user did not specify use_cloudpickle or use_dill



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

Reply via email to