jpipas commented on issue #23588: URL: https://github.com/apache/airflow/issues/23588#issuecomment-1154392769
We were able to determine that this issue was caused by a custom operator that erroneously had `params` as part of its `template_fields`. Therefore any DAG that contained this operator would "flash" the grid - and then the subsequent API calls would fail - which then caused the grid to disappear. After removing this "keyword" used by the baseoperator from `template_fields` the grids load properly now. Before: `template_fields = ["sql_query", "s3_key","params"]` After: `template_fields = ["sql_query", "s3_key"]` -- 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]
