Island: Use monkey_island database in MongoCredentialsRepository

This commit is contained in:
Mike Salvatore 2022-09-15 11:48:12 -04:00
parent ef821f75e2
commit 6e47d3272d
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class MongoCredentialsRepository(ICredentialsRepository):
"""
def __init__(self, mongo: MongoClient, repository_encryptor: ILockableEncryptor):
self._database = mongo.monkeyisland
self._database = mongo.monkey_island
self._repository_encryptor = repository_encryptor
def get_configured_credentials(self) -> Sequence[Credentials]: