Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace deprecated doc links to the correct one #14429

Merged
merged 1 commit into from
Feb 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions airflow/cli/cli_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1479,7 +1479,7 @@ class GroupCommand(NamedTuple):
help='Rotate encrypted connection credentials and variables',
description=(
'Rotate all encrypted connection credentials and variables; see '
'https://airflow.apache.org/docs/stable/howto/secure-connections.html'
'https://airflow.apache.org/docs/apache-airflow/stable/howto/secure-connections.html'
'#rotating-encryption-keys'
),
args=(),
Expand All @@ -1506,7 +1506,7 @@ class GroupCommand(NamedTuple):
help='Celery components',
description=(
'Start celery components. Works only when using CeleryExecutor. For more information, see '
'https://airflow.apache.org/docs/stable/executor/celery.html'
'https://airflow.apache.org/docs/apache-airflow/stable/executor/celery.html'
),
subcommands=CELERY_COMMANDS,
),
Expand Down
2 changes: 1 addition & 1 deletion airflow/example_dags/tutorial_taskflow_api_etl.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def tutorial_taskflow_api_etl():
the TaskFlow API using three simple tasks for Extract, Transform, and Load.
Documentation that goes along with the Airflow TaskFlow API tutorial is
located
[here](https://airflow.apache.org/docs/stable/tutorial_taskflow_api.html)
[here](https://airflow.apache.org/docs/apache-airflow/stable/tutorial_taskflow_api.html)
"""
# [END instantiate_dag]

Expand Down
6 changes: 3 additions & 3 deletions airflow/providers/dingding/example_dags/example_dingding.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,17 +181,17 @@ def failure_callback(context):
"links": [
{
"title": "Airflow DAG feed card",
"messageURL": "https://airflow.apache.org/docs/stable/ui.html",
"messageURL": "https://airflow.apache.org/docs/apache-airflow/stable/ui.html",
"picURL": "https://airflow.apache.org/_images/dags.png",
},
{
"title": "Airflow tree feed card",
"messageURL": "https://airflow.apache.org/docs/stable/ui.html",
"messageURL": "https://airflow.apache.org/docs/apache-airflow/stable/ui.html",
"picURL": "https://airflow.apache.org/_images/tree.png",
},
{
"title": "Airflow graph feed card",
"messageURL": "https://airflow.apache.org/docs/stable/ui.html",
"messageURL": "https://airflow.apache.org/docs/apache-airflow/stable/ui.html",
"picURL": "https://airflow.apache.org/_images/graph.png",
},
]
Expand Down
6 changes: 3 additions & 3 deletions tests/providers/dingding/hooks/test_dingding.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,17 +187,17 @@ def test_build_feed_card_message(self):
"links": [
{
"title": "Airflow DAG feed card",
"messageURL": "https://airflow.apache.org/docs/stable/ui.html",
"messageURL": "https://airflow.apache.org/docs/apache-airflow/stable/ui.html",
"picURL": "https://airflow.apache.org/_images/dags.png",
},
{
"title": "Airflow tree feed card",
"messageURL": "https://airflow.apache.org/docs/stable/ui.html",
"messageURL": "https://airflow.apache.org/docs/apache-airflow/stable/ui.html",
"picURL": "https://airflow.apache.org/_images/tree.png",
},
{
"title": "Airflow graph feed card",
"messageURL": "https://airflow.apache.org/docs/stable/ui.html",
"messageURL": "https://airflow.apache.org/docs/apache-airflow/stable/ui.html",
"picURL": "https://airflow.apache.org/_images/graph.png",
},
]
Expand Down