You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix flakey tests by converting them to async and synchronizing code blocks
* Use the same timeout for all tests
* Use signals to gracefully shut down the mock server
@@ -63,19 +66,19 @@ public async Task Exec_DefaultContainer_StdOut()
63
66
);
64
67
Assert.Equal(K8sProtocol.ChannelV1,clientSocket.SubProtocol);// For WebSockets, the Kubernetes API defaults to the binary channel (v1) protocol.
65
68
66
-
Log.LogInformation("Client socket connected (socket state is {ClientSocketState}). Waiting for server-side socket to become available...",clientSocket.State);
69
+
testOutput.WriteLine($"Client socket connected (socket state is {clientSocket.State}). Waiting for server-side socket to become available...");
0 commit comments