From f68c1868db71b6285345c4d1e1cc9e9548d24976 Mon Sep 17 00:00:00 2001 From: MinJae Kwon Date: Sat, 2 Nov 2019 01:05:45 +0900 Subject: [PATCH] [AIRFLOW-XXX] Fix typo in mysql_hook docstring (#6483) --- airflow/hooks/mysql_hook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/hooks/mysql_hook.py b/airflow/hooks/mysql_hook.py index 6b32e2a75f457..fe79ba1725053 100644 --- a/airflow/hooks/mysql_hook.py +++ b/airflow/hooks/mysql_hook.py @@ -34,7 +34,7 @@ class MySqlHook(DbApiHook): ``{"cursor": "SSCursor"}``. Refer to the MySQLdb.cursors for more details. Note: For AWS IAM authentication, use iam in the extra connection parameters - and set it to true. Leave the password field empty. This will use the the + and set it to true. Leave the password field empty. This will use the "aws_default" connection to get the temporary token unless you override in extras. extras example: ``{"iam":true, "aws_conn_id":"my_aws_conn"}``