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 5bf49a5 commit cd9bcb3Copy full SHA for cd9bcb3
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