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/11/08 20:12:09 UTC

[airflow] branch main updated: Fix typos in Hive transfer operator docstrings (#19474)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new f50f677  Fix typos in Hive transfer operator docstrings (#19474)
f50f677 is described below

commit f50f677514b562ac83a00cde2bfd0efdfbe171e4
Author: Josh Fell <48...@users.noreply.github.com>
AuthorDate: Mon Nov 8 15:11:43 2021 -0500

    Fix typos in Hive transfer operator docstrings (#19474)
---
 airflow/providers/apache/hive/transfers/hive_to_mysql.py   | 2 +-
 airflow/providers/apache/hive/transfers/hive_to_samba.py   | 2 +-
 airflow/providers/apache/hive/transfers/mssql_to_hive.py   | 2 +-
 airflow/providers/apache/hive/transfers/mysql_to_hive.py   | 2 +-
 airflow/providers/apache/hive/transfers/s3_to_hive.py      | 2 +-
 airflow/providers/apache/hive/transfers/vertica_to_hive.py | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/airflow/providers/apache/hive/transfers/hive_to_mysql.py b/airflow/providers/apache/hive/transfers/hive_to_mysql.py
index 8464df9..c7bc5b7 100644
--- a/airflow/providers/apache/hive/transfers/hive_to_mysql.py
+++ b/airflow/providers/apache/hive/transfers/hive_to_mysql.py
@@ -16,7 +16,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-"""This module contains operator to move data from Hive to MySQL."""
+"""This module contains an operator to move data from Hive to MySQL."""
 from tempfile import NamedTemporaryFile
 from typing import Dict, Optional
 
diff --git a/airflow/providers/apache/hive/transfers/hive_to_samba.py b/airflow/providers/apache/hive/transfers/hive_to_samba.py
index a88a8e2..d5baca8 100644
--- a/airflow/providers/apache/hive/transfers/hive_to_samba.py
+++ b/airflow/providers/apache/hive/transfers/hive_to_samba.py
@@ -16,7 +16,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-"""This module contains operator to move data from Hive to Samba."""
+"""This module contains an operator to move data from Hive to Samba."""
 
 from tempfile import NamedTemporaryFile
 
diff --git a/airflow/providers/apache/hive/transfers/mssql_to_hive.py b/airflow/providers/apache/hive/transfers/mssql_to_hive.py
index 01c8b19..20d317e 100644
--- a/airflow/providers/apache/hive/transfers/mssql_to_hive.py
+++ b/airflow/providers/apache/hive/transfers/mssql_to_hive.py
@@ -16,7 +16,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-"""This module contains operator to move data from MSSQL to Hive."""
+"""This module contains an operator to move data from MSSQL to Hive."""
 
 from collections import OrderedDict
 from tempfile import NamedTemporaryFile
diff --git a/airflow/providers/apache/hive/transfers/mysql_to_hive.py b/airflow/providers/apache/hive/transfers/mysql_to_hive.py
index 381ea2e..ebfd605 100644
--- a/airflow/providers/apache/hive/transfers/mysql_to_hive.py
+++ b/airflow/providers/apache/hive/transfers/mysql_to_hive.py
@@ -16,7 +16,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-"""This module contains operator to move data from MySQL to Druid."""
+"""This module contains an operator to move data from MySQL to Hive."""
 
 from collections import OrderedDict
 from tempfile import NamedTemporaryFile
diff --git a/airflow/providers/apache/hive/transfers/s3_to_hive.py b/airflow/providers/apache/hive/transfers/s3_to_hive.py
index c9cf9fb..e408ac2 100644
--- a/airflow/providers/apache/hive/transfers/s3_to_hive.py
+++ b/airflow/providers/apache/hive/transfers/s3_to_hive.py
@@ -16,7 +16,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-"""This module contains operator to move data from Hive to S3 bucket."""
+"""This module contains an operator to move data from an S3 bucket to Hive."""
 
 import bz2
 import gzip
diff --git a/airflow/providers/apache/hive/transfers/vertica_to_hive.py b/airflow/providers/apache/hive/transfers/vertica_to_hive.py
index a235ba3..de18acf 100644
--- a/airflow/providers/apache/hive/transfers/vertica_to_hive.py
+++ b/airflow/providers/apache/hive/transfers/vertica_to_hive.py
@@ -16,7 +16,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-"""This module contains operator to move data from Vertica to Hive."""
+"""This module contains an operator to move data from Vertica to Hive."""
 
 from collections import OrderedDict
 from tempfile import NamedTemporaryFile