Skip to content
Snippets Groups Projects
Commit 84b60d5a authored by Mark Mandel's avatar Mark Mandel Committed by Mark Mandel
Browse files

Fix flakyness with TestSidecarHTTPHealthCheck

I believe that this is starting at the same time as another
http server on the same port, and having a collision.

Removing the parrallel marker should fix this.
parent 54e374b2
No related branches found
No related tags found
No related merge requests found
...@@ -295,8 +295,6 @@ func TestSidecarHealthy(t *testing.T) { ...@@ -295,8 +295,6 @@ func TestSidecarHealthy(t *testing.T) {
} }
func TestSidecarHTTPHealthCheck(t *testing.T) { func TestSidecarHTTPHealthCheck(t *testing.T) {
t.Parallel()
m := agtesting.NewMocks() m := agtesting.NewMocks()
sc, err := NewSDKServer("test", "default", sc, err := NewSDKServer("test", "default",
false, 1*time.Second, 1, 0, m.KubeClient, m.AgonesClient) false, 1*time.Second, 1, 0, m.KubeClient, m.AgonesClient)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment