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 ac77c26 commit 56c6ddeCopy full SHA for 56c6dde
integration-test/src/test/groovy/de/gesellix/docker/client/DockerContainerIntegrationSpec.groovy
@@ -941,7 +941,9 @@ class DockerContainerIntegrationSpec extends Specification {
941
notThrown(Throwable)
942
Thread.sleep(500)
943
def matchingFrames = frames.findAll {
944
- it.streamType == Frame.StreamType.STDOUT
+ // we receive a RAW response because the connection is not upgraded - which is ok for non-interactive usage
945
+// it.streamType == Frame.StreamType.STDOUT
946
+ it.streamType == Frame.StreamType.RAW
947
&& it.payloadAsString.contains("Listening and serving HTTP")
948
}
949
1 == matchingFrames?.size()
0 commit comments