mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-24 09:36:31 +00:00
Remove timeout on validate for docker (#3505)
This commit is contained in:
parent
435241bccf
commit
45e54d93c7
@ -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:
|
||||
|
@ -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]:
|
||||
|
Loading…
x
Reference in New Issue
Block a user