Skip to content

Commit f9a1c90

Browse files
authored
Ignore error log when a component goes to a degraded state (#1533)
This error is unexpectedly happening with 8.11 stacks, but is a temporary issue, component recovers after some seconds. The issue is under investigation.
1 parent 42f66ff commit f9a1c90

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

internal/testrunner/runners/system/runner.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ var (
8686
},
8787
logsRegexp{
8888
includes: regexp.MustCompile("->(FAILED|DEGRADED)"),
89+
90+
// this regex is excluded to avoid a regresion in 8.11 that can make a component to pass to a degraded state during some seconds after reassigning or removing a policy
91+
excludes: []*regexp.Regexp{
92+
regexp.MustCompile(`Component state changed .* \(HEALTHY->DEGRADED\): Degraded: pid .* missed .* check-in`),
93+
},
8994
},
9095
},
9196
},

0 commit comments

Comments
 (0)