Skip to content

Commit 06b3438

Browse files
committed
increase scram timeout
1 parent 043f505 commit 06b3438

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/mongodb-kubernetes-tests/tests/authentication/sharded_cluster_x509_to_scram_transition.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class TestCanEnableScramSha256:
106106
@TRACER.start_as_current_span("test_can_enable_scram_sha_256")
107107
def test_can_enable_scram_sha_256(self, sharded_cluster: MongoDB, ca_path: str):
108108
kubetester.wait_processes_ready()
109-
sharded_cluster.assert_reaches_phase(Phase.Running, timeout=800)
109+
sharded_cluster.assert_reaches_phase(Phase.Running, timeout=1400)
110110

111111
sharded_cluster.load()
112112
sharded_cluster["spec"]["security"]["authentication"]["enabled"] = True
@@ -115,7 +115,7 @@ def test_can_enable_scram_sha_256(self, sharded_cluster: MongoDB, ca_path: str):
115115
]
116116
sharded_cluster["spec"]["security"]["authentication"]["agents"]["mode"] = "SCRAM"
117117
sharded_cluster.update()
118-
sharded_cluster.assert_reaches_phase(Phase.Running, timeout=800)
118+
sharded_cluster.assert_reaches_phase(Phase.Running, timeout=1400)
119119

120120
def test_assert_connectivity(self, ca_path: str):
121121
ShardedClusterTester(MDB_RESOURCE, 1, ssl=True, ca_path=ca_path).assert_connectivity(attempts=25)

0 commit comments

Comments
 (0)