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 1435dcc + 918a3c0 commit 68eacf4Copy full SHA for 68eacf4
util/src/test/java/io/kubernetes/client/AttachTest.java
@@ -57,6 +57,8 @@ public void testUrl() throws IOException, ApiException, InterruptedException {
57
get(urlPathEqualTo("/api/v1/namespaces/" + namespace + "/pods/" + podName + "/attach"))
58
.willReturn(
59
aResponse()
60
+ .withFixedDelay(
61
+ 5000) // A longer delay so the attach stream won't be closed too soon
62
.withStatus(404)
63
.withHeader("Content-Type", "application/json")
64
.withBody("{}")));
0 commit comments