Skip to content

Commit

Permalink
feat: BI-5816 add is_host_normalized to DBDomainManager (#628)
Browse files Browse the repository at this point in the history
  • Loading branch information
ovsds authored Sep 27, 2024
1 parent e8bae23 commit 3298d20
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/dl_core/dl_core/connections_security/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ class DBDomainManager:
async def normalize_db_host(self, original_host: str) -> str:
return original_host

async def is_host_normalized(self, host: str) -> bool:
return False


@attr.s
class ConnectionSecurityManager(metaclass=abc.ABCMeta):
Expand Down

0 comments on commit 3298d20

Please sign in to comment.