Skip to content

Commit

Permalink
Remove 'conf' from search_columns in DagRun View (#15099)
Browse files Browse the repository at this point in the history
i.e. to not support filtering by 'conf' column in DagRun View.

This cannot be supported because FAB uses ILIKE under the hood,
which is not supported by 'bytea' type in Postgres or 'BLOB' in SQLite.

Closes issue #14374
  • Loading branch information
XD-DENG authored Mar 30, 2021
1 parent 6b9b067 commit 3585b3c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion airflow/www/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -3302,7 +3302,6 @@ class DagRunModelView(AirflowModelView):
'start_date',
'end_date',
'external_trigger',
'conf',
]
edit_columns = ['state', 'dag_id', 'execution_date', 'start_date', 'end_date', 'run_id', 'conf']

Expand Down

0 comments on commit 3585b3c

Please sign in to comment.