Skip to content

Commit

Permalink
Resolve CloudSQLDatabaseHook deprecation warning (#40834)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirrao authored Jul 18, 2024
1 parent fec2b10 commit 67befb7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion airflow/providers/google/cloud/hooks/cloud_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ def get_database_hook(self, connection: Connection) -> PostgresHook | MySqlHook:
connects directly to the Google Cloud SQL database.
"""
if self.database_type == "postgres":
db_hook: PostgresHook | MySqlHook = PostgresHook(connection=connection, schema=self.database)
db_hook: PostgresHook | MySqlHook = PostgresHook(connection=connection, database=self.database)
else:
db_hook = MySqlHook(connection=connection, schema=self.database)
self.db_hook = db_hook
Expand Down
1 change: 0 additions & 1 deletion tests/deprecations_ignore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@
- tests/providers/google/cloud/hooks/test_bigquery.py::TestTimePartitioningInRunJob::test_run_load_with_arg
- tests/providers/google/cloud/hooks/test_bigquery.py::TestTimePartitioningInRunJob::test_run_query_with_arg
- tests/providers/google/cloud/hooks/test_bigquery.py::TestTimePartitioningInRunJob::test_run_with_auto_detect
- tests/providers/google/cloud/hooks/test_cloud_sql.py::TestCloudSqlDatabaseHook::test_cloudsql_database_hook_get_database_hook
- tests/providers/google/cloud/hooks/test_gcs.py::TestGCSHook::test_list__error_match_glob_and_invalid_delimiter
- tests/providers/google/cloud/hooks/test_life_sciences.py::TestLifeSciencesHookWithDefaultProjectIdFromConnection::test_error_operation
- tests/providers/google/cloud/hooks/test_life_sciences.py::TestLifeSciencesHookWithDefaultProjectIdFromConnection::test_life_science_client_creation
Expand Down

0 comments on commit 67befb7

Please sign in to comment.