vincbeck commented on code in PR #25609:
URL: https://github.com/apache/airflow/pull/25609#discussion_r941441132


##########
airflow/providers/amazon/aws/secrets/secrets_manager.py:
##########
@@ -367,24 +366,6 @@ def get_conn_value(self, conn_id: str) -> Optional[str]:
 
         return connection
 
-    def get_conn_uri(self, conn_id: str) -> Optional[str]:
-        """
-        Return URI representation of Connection conn_id.
-
-        As of Airflow version 2.3.0 this method is deprecated.
-
-        :param conn_id: the connection id
-        :return: deserialized Connection
-        """
-        if get_airflow_version() >= (2, 3):
-            warnings.warn(
-                f"Method `{self.__class__.__name__}.get_conn_uri` is 
deprecated and will be removed "
-                "in a future release.  Please use method `get_conn_value` 
instead.",
-                DeprecationWarning,
-                stacklevel=2,
-            )
-        return self.get_conn_value(conn_id)
-

Review Comment:
   Keeping it



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