Fix sporadic failures in test cases - #11007
Open
jschmidt-icinga wants to merge 3 commits into
Open
Conversation
The tests themselves call the timer callback directly to be more reproducable. But potentially this could disturb the test case if it takes longer than 5s and the timer fires normally. Therefore it's better to disable it.
julianbrost
reviewed
Aug 26, 2026
jschmidt-icinga
force-pushed
the
fix-sporadic-failures-in-test-cases-again
branch
from
August 31, 2026 07:33
6298222 to
7a32ce6
Compare
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.
This (hopefully) fixes sporadic failures in the following test-cases:
remote_httpserverconnection/liveness_disconnect: by giving the log messages each a 1s timeout to appear.notificationcomponent/notify_delayed: By changing the mechanism for elapsing thetimes.begindelay from waiting it out to setting the last state change into the past.Additionally I've closed a potential change for a race condition if a
notificationcomponent/test ends up taking longer than 5s by disabling the timer insideNotificationComponentsince theNotificationTimerHandler()is called manually in a deterministic way by these test-cases.