From 9f0ed81cfd218326fc57a366977f0d0b104c60c9 Mon Sep 17 00:00:00 2001 From: "Chris S. Kim" Date: Mon, 24 Oct 2022 10:21:01 -0400 Subject: [PATCH] Remove invalid 1xx HTTP codes These tests started failing in go1.19, presumably due to support for valid 1xx responses being added. https://github.com/golang/go/issues/56346 --- agent/checks/check_test.go | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/agent/checks/check_test.go b/agent/checks/check_test.go index b8f16d890f02..d95b87a924b1 100644 --- a/agent/checks/check_test.go +++ b/agent/checks/check_test.go @@ -17,16 +17,17 @@ import ( "testing" "time" + "github.com/hashicorp/go-uuid" + "github.com/stretchr/testify/require" + "golang.org/x/net/http2" + "golang.org/x/net/http2/h2c" + "github.com/hashicorp/consul/agent/mock" "github.com/hashicorp/consul/agent/structs" "github.com/hashicorp/consul/api" "github.com/hashicorp/consul/sdk/freeport" "github.com/hashicorp/consul/sdk/testutil" "github.com/hashicorp/consul/sdk/testutil/retry" - "github.com/hashicorp/go-uuid" - "github.com/stretchr/testify/require" - http2 "golang.org/x/net/http2" - "golang.org/x/net/http2/h2c" ) func uniqueID() string { @@ -300,8 +301,6 @@ func TestCheckHTTP(t *testing.T) { {code: 429, status: api.HealthWarning}, // critical - {code: 150, status: api.HealthCritical}, - {code: 199, status: api.HealthCritical}, {code: 300, status: api.HealthCritical}, {code: 400, status: api.HealthCritical}, {code: 500, status: api.HealthCritical},