LTE-2878 : Selfheal functions are not running in XLE#262
Open
aj970-crypto wants to merge 1 commit intodevelopfrom
Open
LTE-2878 : Selfheal functions are not running in XLE#262aj970-crypto wants to merge 1 commit intodevelopfrom
aj970-crypto wants to merge 1 commit intodevelopfrom
Conversation
Signed-off-by: aj970 <akshaya_j@comcast.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates cron initialization to stop scheduling the SelfHeal “aggressive” job on specific device types where it is not expected to run (per LTE-2878), while keeping other SelfHeal cron jobs intact.
Changes:
- Gate creation of the
selfheal_aggressive.shcrontab entry based onBOX_TYPE(skip on WNXL11BWL, HUB4, SR213). - Preserve existing SelfHeal cron scheduling for resource monitor and connectivity test jobs.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
Comment on lines
+174
to
+176
| if [ "$BOX_TYPE" != "WNXL11BWL" ] && [ "$BOX_TYPE" != "HUB4" ] && [ "$BOX_TYPE" != "SR213" ]; then | ||
| # Monitor selfheal_aggressive.sh based on syscfg value | ||
| AGGRESSIVE_INTERVAL=$(syscfg get AggressiveInterval) |
Comment on lines
+174
to
+178
| if [ "$BOX_TYPE" != "WNXL11BWL" ] && [ "$BOX_TYPE" != "HUB4" ] && [ "$BOX_TYPE" != "SR213" ]; then | ||
| # Monitor selfheal_aggressive.sh based on syscfg value | ||
| AGGRESSIVE_INTERVAL=$(syscfg get AggressiveInterval) | ||
| if [ -z "$AGGRESSIVE_INTERVAL" ]; then | ||
| AGGRESSIVE_INTERVAL=5 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
LTE-2878 : Selfheal functions are not running in XLE
Reason for change: Selfheal aggressive is not running in XLE and Sky devices, so removed the cron entry of it in those devices
Test Procedure: Check whether selfheal aggressive selfheal entry is removed from crontab in XLE and Sky devices.
Risks: Low
Priority: P0