dimon222 commented on a change in pull request #19815:
URL: https://github.com/apache/airflow/pull/19815#discussion_r757117351



##########
File path: airflow/providers/postgres/hooks/postgres.py
##########
@@ -184,7 +184,13 @@ def get_iam_token(self, conn: Connection) -> Tuple[str, 
str, int]:
             # Pull the custer-identifier from the beginning of the Redshift URL
             # ex. my-cluster.ccdre4hpd39h.us-east-1.redshift.amazonaws.com 
returns my-cluster
             cluster_identifier = conn.extra_dejson.get('cluster-identifier', 
conn.host.split('.')[0])
-            client = aws_hook.get_client_type('redshift')
+            session, endpoint_url = aws_hook._get_credentials()
+            client = session.client(
+                "redshift",
+                endpoint_url=endpoint_url,
+                config=aws_hook.config,
+                verify=aws_hook.verify,
+            )

Review comment:
       I guess because we expect tuple it can't patch it. Not sure about how 
such thing should be handled in unit test framework. Any expert here?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to