ashb commented on a change in pull request #6489: [AIRFLOW-3959] [AIRFLOW-4026]
Add filter by DAG tags
URL: https://github.com/apache/airflow/pull/6489#discussion_r347492662
##########
File path: airflow/www/utils.py
##########
@@ -471,9 +471,12 @@ def clean_column_names():
def is_utcdatetime(self, col_name):
from airflow.utils.sqlalchemy import UtcDateTime
- obj = self.list_columns[col_name].type
- return isinstance(obj, UtcDateTime) or \
- isinstance(obj, sqla.types.TypeDecorator) and \
- isinstance(obj.impl, UtcDateTime)
+
+ if col_name in self.list_columns:
Review comment:
What was this change for btw?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services