Skip to content

Commit 56e7555

Browse files
Fix UI redirect (#26409)
Co-authored-by: Konstantin Weddige <[email protected]>
1 parent e458eb6 commit 56e7555

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airflow/www/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2329,7 +2329,7 @@ def confirm(self):
23292329
task_id = args.get('task_id')
23302330
dag_run_id = args.get('dag_run_id')
23312331
state = args.get('state')
2332-
origin = args.get('origin')
2332+
origin = get_safe_url(args.get('origin'))
23332333

23342334
if 'map_index' not in args:
23352335
map_indexes: list[int] | None = None

0 commit comments

Comments
 (0)