summaryrefslogtreecommitdiff
path: root/plugins/http
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-11-24 16:44:19 +0300
committerValery Piashchynski <[email protected]>2020-11-24 16:44:19 +0300
commit30825ef9b4a742f8e7bf7b8caee0bedccb36b601 (patch)
tree68ec653117d84d4c5c906505de73292d0ad2b817 /plugins/http
parent12bcbc309c5f3432d860f7aa106033d1ddf9e824 (diff)
force Test_StaticPool_Broken_Replace to finish
Diffstat (limited to 'plugins/http')
-rw-r--r--plugins/http/tests/http_test.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/http/tests/http_test.go b/plugins/http/tests/http_test.go
index 117bccb7..ca79e94e 100644
--- a/plugins/http/tests/http_test.go
+++ b/plugins/http/tests/http_test.go
@@ -422,6 +422,9 @@ func TestFastCGI_RequestUri(t *testing.T) {
wg := &sync.WaitGroup{}
wg.Add(1)
+
+ t.Run("FastCGIServiceRequestUri", fcgiReqURI)
+
go func() {
tt := time.NewTimer(time.Second * 10)
defer wg.Done()
@@ -450,7 +453,6 @@ func TestFastCGI_RequestUri(t *testing.T) {
}
}()
- t.Run("FastCGIServiceRequestUri", fcgiReqURI)
wg.Wait()
}