mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-25 18:16:32 +00:00
Fix add-on rebuild with ingress (#4819)
This commit is contained in:
parent
51df986222
commit
98c01fe1b3
@ -770,6 +770,7 @@ class Addon(AddonModel):
|
|||||||
raise AddonsError() from err
|
raise AddonsError() from err
|
||||||
|
|
||||||
self.sys_addons.data.update(self.addon_store)
|
self.sys_addons.data.update(self.addon_store)
|
||||||
|
await self._check_ingress_port()
|
||||||
_LOGGER.info("Add-on '%s' successfully rebuilt", self.slug)
|
_LOGGER.info("Add-on '%s' successfully rebuilt", self.slug)
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
@ -1221,7 +1222,7 @@ class Addon(AddonModel):
|
|||||||
_LOGGER.info("Restore/Update of image for addon %s", self.slug)
|
_LOGGER.info("Restore/Update of image for addon %s", self.slug)
|
||||||
with suppress(DockerError):
|
with suppress(DockerError):
|
||||||
await self.instance.update(version, restore_image, self.arch)
|
await self.instance.update(version, restore_image, self.arch)
|
||||||
self._check_ingress_port()
|
await self._check_ingress_port()
|
||||||
|
|
||||||
# Restore data and config
|
# Restore data and config
|
||||||
def _restore_data():
|
def _restore_data():
|
||||||
|
Loading…
x
Reference in New Issue
Block a user