Merge pull request #16568 from jmhbnz/fix-release-35-cmux

[3.5] Backport removing obsolete http 1.0 version for cmux tests
This commit is contained in:
Benjamin Wang 2023-09-10 11:17:07 +01:00 committed by GitHub
commit 635219a31b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,7 +132,7 @@ func testConnectionMultiplexing(ctx context.Context, t *testing.T, member etcdPr
assert.NoError(t, err)
})
t.Run("curl", func(t *testing.T) {
for _, httpVersion := range []string{"2", "1.1", "1.0", ""} {
for _, httpVersion := range []string{"2", "1.1", ""} {
tname := "http" + httpVersion
if httpVersion == "" {
tname = "default"