Merge branch v2.9 into v3.0

This commit is contained in:
kevinpollet 2023-01-02 14:55:45 +01:00
commit b22aef7fff
No known key found for this signature in database
GPG key ID: 0C9A5DDD1B292453
70 changed files with 110 additions and 85 deletions

View file

@ -6,6 +6,7 @@ import (
"crypto/tls"
"net/http"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
@ -113,6 +114,9 @@ func TestHTTP3AdvertisedPort(t *testing.T) {
})
require.NoError(t, err)
// We are racing with the http3Server readiness happening in the goroutine starting the entrypoint
time.Sleep(time.Second)
request, err := http.NewRequest(http.MethodGet, "https://127.0.0.1:8090", nil)
require.NoError(t, err)