-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Fixing org.opensearch.repositories.azure.AzureBlobContainerRetriesTests and org.opensearch.action.admin.cluster.node.stats.NodeStatsTests #1390
Conversation
Can one of the admins verify this patch? |
✅ DCO Check Passed d7d571438102f6178c1d59824d498f94f4ef8909 |
api 'io.projectreactor.netty:reactor-netty:1.0.11' | ||
api 'io.projectreactor.netty:reactor-netty-core:1.0.11' | ||
api 'io.projectreactor.netty:reactor-netty-http:1.0.11' | ||
api 'io.projectreactor:reactor-core:3.4.11' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aligning with netty
4.1.69.Final
✅ Gradle Wrapper Validation success d7d571438102f6178c1d59824d498f94f4ef8909 |
@@ -152,7 +152,7 @@ private BlobContainer createBlobContainer(final int maxRetries) { | |||
+ InetAddresses.toUriString(address.getAddress()) + ":" + address.getPort() + "/"; | |||
clientSettings.put(ENDPOINT_SUFFIX_SETTING.getConcreteSettingForNamespace(clientName).getKey(), endpoint); | |||
clientSettings.put(MAX_RETRIES_SETTING.getConcreteSettingForNamespace(clientName).getKey(), maxRetries); | |||
clientSettings.put(TIMEOUT_SETTING.getConcreteSettingForNamespace(clientName).getKey(), TimeValue.timeValueMillis(1000)); | |||
clientSettings.put(TIMEOUT_SETTING.getConcreteSettingForNamespace(clientName).getKey(), TimeValue.timeValueMillis(2000)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When CI node gets really busy, 1s may not be enough (this is total operation timeout, not network one)
❌ Gradle Precommit failure d7d571438102f6178c1d59824d498f94f4ef8909 |
…ts and org.opensearch.action.admin.cluster.node.stats.NodeStatsTests Signed-off-by: Andriy Redko <[email protected]>
✅ Gradle Wrapper Validation success d6b9bbc |
✅ DCO Check Passed d6b9bbc |
✅ Gradle Precommit success d6b9bbc |
start gradle check |
@dblock another flaky one? First time I see it, have you seen it before?
|
I've seen this failure before. It's sporadic and needs deeper investigation so I opened #1396 Rerunning gradle check here... |
start gradle check |
Description
Fixing org.opensearch.repositories.azure.AzureBlobContainerRetriesTests and org.opensearch.action.admin.cluster.node.stats.NodeStatsTests
Issues Resolved
Closes #1389 and #1388
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.