ffinfo commented on a change in pull request #4390: [AIRFLOW-3584] Use ORM DAGs
for index view.
URL: https://github.com/apache/incubator-airflow/pull/4390#discussion_r244528839
##########
File path: airflow/models/__init__.py
##########
@@ -2973,6 +2987,8 @@ class DagModel(Base):
description = Column(Text)
# Default view of the inside the webserver
default_view = Column(String(25))
+ # Schedule interval
+ schedule_interval = Column(PickleType(pickler=dill))
Review comment:
I think I would like the json format. I did found some comments in the code
that pickle will not be used at all anymore in 2.0. Although I'm not sure what
the pickle roadmap exactly is inside airflow ;).
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services