seanmuth commented on code in PR #68305:
URL: https://github.com/apache/airflow/pull/68305#discussion_r3492583406
##########
providers/hashicorp/tests/unit/hashicorp/secrets/test_vault.py:
##########
@@ -121,8 +122,10 @@ def test_get_connection(self, mock_hvac):
}
test_client = VaultBackend(**kwargs)
+ if hasattr(test_client, "_set_connection_class"):
+ test_client._set_connection_class(SdkConnection)
connection = test_client.get_connection(conn_id="test_postgres")
- assert connection.get_uri() ==
"postgresql://airflow:airflow@host:5432/airflow?foo=bar&baz=taz"
+ assert connection.get_uri() ==
"postgres://airflow:airflow@host:5432/airflow?foo=bar&baz=taz"
Review Comment:
is it possible for a probablistic LLM to ever truly be "intentional?" lol,
should be `postgresql`, idk why it did that, will revert along with the
requested changes above
--
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]