jscheffl commented on code in PR #53311:
URL: https://github.com/apache/airflow/pull/53311#discussion_r2203246358


##########
providers/apache/pinot/src/airflow/providers/apache/pinot/hooks/pinot.py:
##########
@@ -295,7 +295,7 @@ class PinotDbApiHook(DbApiHook):
 
     def get_conn(self) -> Any:
         """Establish a connection to pinot broker through pinot dbapi."""
-        conn = self.get_connection(self.pinot_broker_conn_id)  # type: ignore
+        conn = self.get_connection(self.pinot_broker_conn_id)

Review Comment:
   Had the same problem in `vertica` --> you need to switch to
   ```suggestion
           conn = self.get_connection(self.get_conn_id())
   ```



-- 
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