summaryrefslogtreecommitdiff
path: root/service/http
diff options
context:
space:
mode:
authormarliotto <[email protected]>2020-01-27 16:57:22 +0300
committermarliotto <[email protected]>2020-01-27 16:57:22 +0300
commit6e8554a8656df8b8f87c76166bf6f206a8495129 (patch)
tree2a7fcb54e1cc52bb61bb833144624787a97005cb /service/http
parente00d36c57c1227e614b0572ab0c0df98032f4298 (diff)
stabilize unhealthy test
Diffstat (limited to 'service/http')
-rw-r--r--service/http/fcgi_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/service/http/fcgi_test.go b/service/http/fcgi_test.go
index 5ebd9b4b..0cfc6e41 100644
--- a/service/http/fcgi_test.go
+++ b/service/http/fcgi_test.go
@@ -67,7 +67,7 @@ func Test_FCGI_Service_Request_Uri(t *testing.T) {
assert.NoError(t, c.Init(&testCfg{httpCfg: `{
"fcgi": {
- "address": "tcp://0.0.0.0:6082"
+ "address": "tcp://0.0.0.0:6083"
},
"workers":{
"command": "php ../../tests/http/client.php request-uri pipes",
@@ -86,7 +86,7 @@ func Test_FCGI_Service_Request_Uri(t *testing.T) {
time.Sleep(time.Millisecond * 100)
defer c.Stop()
- fcgiConnFactory := gofast.SimpleConnFactory("tcp", "0.0.0.0:6082")
+ fcgiConnFactory := gofast.SimpleConnFactory("tcp", "0.0.0.0:6083")
fcgiHandler := gofast.NewHandler(
gofast.BasicParamsMap(gofast.BasicSession),