You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/02/20 21:58:23 UTC

[airflow] branch master updated: Fix various typos (#14335)

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new f288da5  Fix various typos (#14335)
f288da5 is described below

commit f288da52917c13de1d161e1043156f52829087a6
Author: John Bampton <jb...@users.noreply.github.com>
AuthorDate: Sun Feb 21 07:58:09 2021 +1000

    Fix various typos (#14335)
---
 chart/tests/test_statsd.py                         | 2 +-
 dev/README_RELEASE_BACKPORT_PROVIDER_PACKAGES.md   | 2 +-
 dev/provider_packages/README.md                    | 2 +-
 dev/provider_packages/prepare_provider_packages.py | 4 ++--
 scripts/ci/images/ci_build_dockerhub.sh            | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/chart/tests/test_statsd.py b/chart/tests/test_statsd.py
index ae8b8e5..9b00524 100644
--- a/chart/tests/test_statsd.py
+++ b/chart/tests/test_statsd.py
@@ -23,7 +23,7 @@ from tests.helm_template_generator import render_chart
 
 
 class StatsdTest(unittest.TestCase):
-    def test_should_create_statsd_defalut(self):
+    def test_should_create_statsd_default(self):
         docs = render_chart(show_only=["templates/statsd/statsd-deployment.yaml"])
 
         assert "RELEASE-NAME-statsd" == jmespath.search("metadata.name", docs[0])
diff --git a/dev/README_RELEASE_BACKPORT_PROVIDER_PACKAGES.md b/dev/README_RELEASE_BACKPORT_PROVIDER_PACKAGES.md
index 4a51e53..81f3b4d 100644
--- a/dev/README_RELEASE_BACKPORT_PROVIDER_PACKAGES.md
+++ b/dev/README_RELEASE_BACKPORT_PROVIDER_PACKAGES.md
@@ -538,7 +538,7 @@ N "+1" binding votes received:
 
 N "+1" non-binding votes received:
 
-- COMMITER (non-binding)
+- COMMITTER (non-binding)
 
 Vote thread:
 https://lists.apache.org/thread.html/<TODO:REPLACE_ME_WITH_THE_VOTING_THREAD>@%3Cdev.airflow.apache.org%3E
diff --git a/dev/provider_packages/README.md b/dev/provider_packages/README.md
index f5470a4..4bd6536 100644
--- a/dev/provider_packages/README.md
+++ b/dev/provider_packages/README.md
@@ -42,7 +42,7 @@
 
 # What the provider packages are
 
-The Prvider Provider packages are separate packages (one package per provider) that implement
+The Provider packages are separate packages (one package per provider) that implement
 integrations with external services for Airflow in the form of installable Python packages.
 
 The Release Manager prepares packages separately from the main Airflow Release, using
diff --git a/dev/provider_packages/prepare_provider_packages.py b/dev/provider_packages/prepare_provider_packages.py
index b9d4fe8..5f2681c 100755
--- a/dev/provider_packages/prepare_provider_packages.py
+++ b/dev/provider_packages/prepare_provider_packages.py
@@ -991,7 +991,7 @@ def make_sure_remote_apache_exists_and_fetch(no_git_update: bool):
     This will:
     * check if the remote exists and add if it does not
     * check if the local repo is shallow, markit to be unshallowed in this case
-    * fetch from the remote including all tags and overriding local taags in case they are set differently
+    * fetch from the remote including all tags and overriding local tags in case they are set differently
 
     :param no_git_update: If the git remote already exists, don't try to update it
 
@@ -1362,7 +1362,7 @@ def get_all_changes_for_regular_packages(
     if len(versions) == 1:
         print(f"The provider '{provider_package_id}' has never been released but it is ready to release!\n")
     else:
-        print(f"New versio of the '{provider_package_id}' package is ready to be released!\n")
+        print(f"New version of the '{provider_package_id}' package is ready to be released!\n")
     next_version_tag = HEAD_OF_HTTPS_REMOTE
     changes_table = ''
     print_version = versions[0]
diff --git a/scripts/ci/images/ci_build_dockerhub.sh b/scripts/ci/images/ci_build_dockerhub.sh
index a115f97..57d31fe 100755
--- a/scripts/ci/images/ci_build_dockerhub.sh
+++ b/scripts/ci/images/ci_build_dockerhub.sh
@@ -104,7 +104,7 @@ else
     echo
     echo "Building airflow from release tag: ${DOCKER_TAG}"
     echo
-    # This is an imaae built from the "release" tag (either RC or final one).
+    # This is an image built from the "release" tag (either RC or final one).
     # In this case all packages are taken from PyPI rather than from locally built sources
     export INSTALL_FROM_PYPI="true"
     export INSTALL_FROM_DOCKER_CONTEXT_FILES="false"