-
Notifications
You must be signed in to change notification settings - Fork 748
Support CGroup v2 on Supervised with manual addon restarts #5419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,60 @@ | ||
| """Helpers to fix addon by restarting it.""" | ||
|
|
||
| import logging | ||
|
|
||
| from ...coresys import CoreSys | ||
| from ...exceptions import AddonsError, ResolutionFixupError | ||
| from ..const import ContextType, IssueType, SuggestionType | ||
| from .base import FixupBase | ||
|
|
||
| _LOGGER: logging.Logger = logging.getLogger(__name__) | ||
|
|
||
|
|
||
| def setup(coresys: CoreSys) -> FixupBase: | ||
| """Check setup function.""" | ||
| return FixupAddonExecuteRestart(coresys) | ||
|
|
||
|
|
||
| class FixupAddonExecuteRestart(FixupBase): | ||
| """Storage class for fixup.""" | ||
|
|
||
| async def process_fixup(self, reference: str | None = None) -> None: | ||
| """Initialize the fixup class.""" | ||
| if not (addon := self.sys_addons.get(reference, local_only=True)): | ||
| _LOGGER.info("Cannot restart addon %s as it does not exist", reference) | ||
| return | ||
|
|
||
| # Stop addon | ||
| try: | ||
| await addon.stop() | ||
| except AddonsError as err: | ||
| _LOGGER.error("Could not stop %s due to %s", reference, err) | ||
| raise ResolutionFixupError() from None | ||
|
|
||
| # Start addon | ||
| # Removing the container has already fixed the issue and dismissed it | ||
| # So any errors on startup are just logged. We won't wait on the startup task either | ||
| try: | ||
| await addon.start() | ||
| except AddonsError as err: | ||
| _LOGGER.error("Could not restart %s due to %s", reference, err) | ||
|
|
||
| @property | ||
| def suggestion(self) -> SuggestionType: | ||
| """Return a SuggestionType enum.""" | ||
| return SuggestionType.EXECUTE_RESTART | ||
|
|
||
| @property | ||
| def context(self) -> ContextType: | ||
| """Return a ContextType enum.""" | ||
| return ContextType.ADDON | ||
|
|
||
| @property | ||
| def issues(self) -> list[IssueType]: | ||
| """Return a IssueType enum list.""" | ||
| return [IssueType.DEVICE_ACCESS_MISSING] | ||
|
|
||
| @property | ||
| def auto(self) -> bool: | ||
| """Return if a fixup can be apply as auto fix.""" | ||
| return False |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.