justinpakzad commented on code in PR #60983:
URL: https://github.com/apache/airflow/pull/60983#discussion_r2723327401


##########
airflow-core/src/airflow/models/dagbundle.py:
##########
@@ -48,7 +48,8 @@ class DagBundleModel(Base, LoggingMixin):
     active: Mapped[bool | None] = mapped_column(Boolean, default=True, 
nullable=True)
     version: Mapped[str | None] = mapped_column(String(200), nullable=True)
     last_refreshed: Mapped[datetime | None] = mapped_column(UtcDateTime, 
nullable=True)
-    signed_url_template: Mapped[str | None] = mapped_column(String(200), 
nullable=True)
+    # Signed URL payloads can exceed 200 characters; store full token without 
truncation.
+    signed_url_template: Mapped[str | None] = mapped_column(Text, 
nullable=True)

Review Comment:
   This appears to be an unrelated change.



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