Skip to content

Commit

Permalink
fix typo in function name (#17224)
Browse files Browse the repository at this point in the history
  • Loading branch information
kozlovb authored Mar 19, 2024
1 parent 6c14eb1 commit 158ce74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlserver/datadog_checks/sqlserver/sqlserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ def _check_database_conns(self):
engine_edition = self.static_info_cache.get(STATIC_INFO_ENGINE_EDITION)
if is_azure_sql_database(engine_edition):
# On Azure, we can't use a less costly approach.
self._check_connection_by_connecting_to_db()
self._check_connections_by_connecting_to_db()
else:
self._check_connections_by_use_db()

Expand Down

0 comments on commit 158ce74

Please sign in to comment.