We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ff0cc3 commit b3ce074Copy full SHA for b3ce074
docker/mongodb-kubernetes-tests/kubetester/mongotester.py
@@ -258,14 +258,7 @@ def assert_scram_sha_authentication(
258
if i == 0:
259
fail(f"unable to authenticate after {attempts} attempts with error: {e}")
260
261
- # Use adaptive retry delays for better password propagation handling
262
- remaining_attempts = i
263
- if remaining_attempts >= attempts * 0.7: # First ~30% of attempts
264
- delay = 10 # Longer delay for initial propagation
265
- else:
266
- delay = 5 # Standard delay for normal retries
267
-
268
- time.sleep(delay)
+ time.sleep(5)
269
270
def assert_scram_sha_authentication_fails(
271
self,
0 commit comments