We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9076e01 commit 5723204Copy full SHA for 5723204
airflow-core/src/airflow/utils/helpers.py
@@ -204,7 +204,7 @@ def build_airflow_dagrun_url(dag_id: str, run_id: str) -> str:
204
http://localhost:8080/dags/hi/runs/manual__2025-02-23T18:27:39.051358+00:00_RZa1at4Q
205
"""
206
baseurl = conf.get("api", "base_url", fallback="/")
207
- return urljoin(baseurl, f"dags/{dag_id}/runs/{run_id}")
+ return urljoin(baseurl.rstrip("/") + "/", f"dags/{dag_id}/runs/{run_id}")
208
209
210
# The 'template' argument is typed as Any because the jinja2.Template is too
0 commit comments