We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dab0e2 commit 47265e7Copy full SHA for 47265e7
airflow/providers/google/cloud/hooks/cloud_sql.py
@@ -977,7 +977,7 @@ def cleanup_database_hook(self) -> None:
977
if not self.db_hook:
978
raise ValueError("The db_hook should be set")
979
if not isinstance(self.db_hook, PostgresHook):
980
- raise ValueError(f"The db_hook should be PostrgresHook and is {type(self.db_hook)}")
+ raise ValueError(f"The db_hook should be PostgresHook and is {type(self.db_hook)}")
981
conn = getattr(self.db_hook, 'conn')
982
if conn and conn.notices:
983
for output in self.db_hook.conn.notices:
0 commit comments