-
Notifications
You must be signed in to change notification settings - Fork 74
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
Fix SPI flaky Integ tests #556
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #556 +/- ##
=========================================
Coverage 29.17% 29.17%
Complexity 98 98
=========================================
Files 22 22
Lines 1186 1186
Branches 109 109
=========================================
Hits 346 346
Misses 819 819
Partials 21 21 ☔ View full report in Codecov by Sentry. |
@prudhvigodithi Can the issues upload coverage be resolved by an update to the custom github runner? Looks like the Linux runner can't run Node v20.
|
Hey @cwperks looks like this is coming from |
Signed-off-by: Prudhvi Godithi <[email protected]>
Can I get one more approval please? |
Signed-off-by: Prudhvi Godithi <[email protected]> (cherry picked from commit b321e4a) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
(cherry picked from commit b321e4a) Signed-off-by: Prudhvi Godithi <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Description
Fix flaky SPI Integ tests with retry plugin. After some debugging found that the exact issue is
NodeDisconnectedException[[integTest-0][127.0.0.1:41811][indices:admin/delete] disconnected]
which is coming from OpenSearch Integ test framework used and thus causing the error:Initially I have tested with re-try logic and not seen any issue with
LockServiceIT.testRenewLock
after multiple runs.But @reta suggested to use
org.gradle.test-retry
that does the exact some thing for all tests.Issues Resolved
#56
Check List
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.