You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ur...@apache.org on 2022/01/08 15:26:38 UTC

[airflow] branch main updated: Rename amazon EMR hook name (#20767)

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

uranusjr 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 88e3f2a  Rename amazon EMR hook name (#20767)
88e3f2a is described below

commit 88e3f2ae5e5101928858099f9d4e7fb6542c4110
Author: vinit payal <vi...@gmail.com>
AuthorDate: Sat Jan 8 20:56:08 2022 +0530

    Rename amazon EMR hook name (#20767)
    
    Co-authored-by: vinit payal <vi...@tribes.ai>
---
 airflow/providers/amazon/aws/hooks/emr.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/providers/amazon/aws/hooks/emr.py b/airflow/providers/amazon/aws/hooks/emr.py
index 48833f2..bfec7ec 100644
--- a/airflow/providers/amazon/aws/hooks/emr.py
+++ b/airflow/providers/amazon/aws/hooks/emr.py
@@ -39,7 +39,7 @@ class EmrHook(AwsBaseHook):
     conn_name_attr = 'emr_conn_id'
     default_conn_name = 'emr_default'
     conn_type = 'emr'
-    hook_name = 'Elastic MapReduce'
+    hook_name = 'Amazon Elastic MapReduce'
 
     def __init__(self, emr_conn_id: Optional[str] = default_conn_name, *args, **kwargs) -> None:
         self.emr_conn_id = emr_conn_id