Island: Decorate the FileRepository for AgentBinaryRepository

This commit is contained in:
Mike Salvatore 2022-07-03 09:35:19 -04:00
parent 3c85a89702
commit 9cb79c119c
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ def _decorate_file_repository(file_repository: IFileRepository) -> IFileReposito
def _build_agent_binary_repository():
file_repository = LocalStorageFileRepository(AGENT_BINARIES_PATH)
file_repository = _decorate_file_repository(LocalStorageFileRepository(AGENT_BINARIES_PATH))
agent_binary_repository = AgentBinaryRepository(file_repository)
_log_agent_binary_hashes(agent_binary_repository)