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.
2 parents 5906b21 + f784977 commit 3cb59aeCopy full SHA for 3cb59ae
tests/containers/kubernetes_utils.py
@@ -267,10 +267,12 @@ def deploy(
267
268
self.port = p.get_actual_port()
269
LOGGER.debug(f"Listening on port {self.port}")
270
+ # Use 60s timeout for all architectures to handle slower SSL/TLS negotiation
271
+ # especially on s390x and other non-native architectures
272
Wait.until(
273
"Connecting to pod succeeds",
274
1,
- 30,
275
+ 60,
276
lambda: requests.get(f"http://localhost:{self.port}").status_code == 200,
277
)
278
LOGGER.debug("Done setting up portforward")
0 commit comments