We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
data
callback
1 parent 7bca31d commit 6df9b3dCopy full SHA for 6df9b3d
airflow-core/src/airflow/models/callback.py
@@ -113,7 +113,7 @@ class Callback(Base):
113
fetch_method: Mapped[str] = mapped_column(String(20), nullable=False)
114
115
# Used by subclasses to store information about how to run the callback
116
- data: Mapped[dict] = mapped_column(ExtendedJSON)
+ data: Mapped[dict | None] = mapped_column(ExtendedJSON, nullable=True)
117
118
# State of the Callback of type: CallbackState. Can be null for instances of DagProcessorCallback.
119
state: Mapped[str | None] = mapped_column(String(10))
0 commit comments