diff options
-rw-r--r-- | .github/workflows/build.yml | 2 | ||||
-rw-r--r-- | plugins/http/tests/configs/.rr-http.yaml | 13 | ||||
-rw-r--r-- | plugins/http/tests/http_test.go | 2 |
3 files changed, 2 insertions, 15 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 204173cd..04545212 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: golang: name: Build (Go ${{ matrix.go }}, PHP ${{ matrix.php }}, OS ${{matrix.os}}) runs-on: ${{ matrix.os }} - timeout-minutes: 20 + timeout-minutes: 25 strategy: fail-fast: false matrix: diff --git a/plugins/http/tests/configs/.rr-http.yaml b/plugins/http/tests/configs/.rr-http.yaml index c6868f8c..e2e361cf 100644 --- a/plugins/http/tests/configs/.rr-http.yaml +++ b/plugins/http/tests/configs/.rr-http.yaml @@ -24,19 +24,6 @@ http: maxJobs: 0 allocateTimeout: 60s destroyTimeout: 60s - - ssl: - port: 8892 - redirect: false - cert: fixtures/server.crt - key: fixtures/server.key - # rootCa: root.crt - fcgi: - address: tcp://0.0.0.0:7921 - http2: - enabled: false - h2c: false - maxConcurrentStreams: 128 logs: mode: development level: error diff --git a/plugins/http/tests/http_test.go b/plugins/http/tests/http_test.go index 8b15cf0c..1a61597c 100644 --- a/plugins/http/tests/http_test.go +++ b/plugins/http/tests/http_test.go @@ -822,7 +822,7 @@ func TestHttpMiddleware(t *testing.T) { wg := &sync.WaitGroup{} wg.Add(1) - tt := time.NewTimer(time.Second * 15) + tt := time.NewTimer(time.Second * 20) go func() { defer wg.Done() |