Remove timeout on validate for docker (#3505)

This commit is contained in:
Pascal Vizeli 2022-03-10 14:11:18 +01:00 committed by GitHub
parent 435241bccf
commit 45e54d93c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -687,7 +687,7 @@ class DockerAddon(DockerInterface):
self.sys_security.verify_content(self.addon.codenotary, checksum),
self.sys_loop,
)
job.result(timeout=20)
job.result()
@Job(conditions=[JobCondition.OS_AGENT])
async def _hardware_events(self, device: Device) -> None:

View File

@ -658,7 +658,7 @@ class DockerInterface(CoreSysAttributes):
job = asyncio.run_coroutine_threadsafe(
self.sys_security.verify_own_content(checksum), self.sys_loop
)
job.result(timeout=20)
job.result()
@process_lock
def check_trust(self) -> Awaitable[None]: