rawwar commented on code in PR #44333:
URL: https://github.com/apache/airflow/pull/44333#discussion_r1856159261


##########
airflow/models/dagrun.py:
##########
@@ -140,7 +141,7 @@ class DagRun(Base, LoggingMixin):
     triggered_by = Column(
         Enum(DagRunTriggeredByType, native_enum=False, length=50)
     )  # Airflow component that triggered the run.
-    conf = Column(PickleType)
+    conf = Column(JSONField(json=json), nullable=True)

Review Comment:
   I noticed the backfill model was implemented using JSONField. But, I will 
update



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