Arunodoy18 commented on issue #60915: URL: https://github.com/apache/airflow/issues/60915#issuecomment-3784873620
Thanks for the detailed report — I can confirm this is a real schema issue. The dag_bundle.signed_url_template column is currently defined as VARCHAR(200), but the generated signed URL templates can exceed this length (≈200+ chars), causing the DAG Processor to fail at startup with StringDataRightTruncation. This is reproducible on Airflow 3.1.x during DagBundlesManager.sync_bundles_to_db(). I’m preparing a fix to update the column to TEXT and add an Alembic migration for existing databases. I’ll submit a PR shortly. -- 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]
