Skip to content

Commit

Permalink
Remove timeout on validate for docker (#3505)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvizeli authored Mar 10, 2022
1 parent 435241b commit 45e54d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion supervisor/docker/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ def _validate_trust(
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:
Expand Down
2 changes: 1 addition & 1 deletion supervisor/docker/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ def _validate_trust(
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]:
Expand Down

0 comments on commit 45e54d9

Please sign in to comment.