From d890eee1742dc3a0a1c787f7e65d40b1e81a94db Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Sun, 15 Nov 2020 13:41:19 +0300 Subject: Remove old rr imports --- go.mod | 1 - 1 file changed, 1 deletion(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index b268a831..21500c30 100755 --- a/go.mod +++ b/go.mod @@ -12,7 +12,6 @@ require ( github.com/spiral/endure v1.0.0-beta19 github.com/spiral/errors v1.0.4 github.com/spiral/goridge/v2 v2.4.6 - github.com/spiral/roadrunner v1.8.4 github.com/stretchr/testify v1.6.1 github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a go.uber.org/multierr v1.6.0 -- cgit v1.2.3 From 3cbdd3d3e44b3b4e72565d666391e3b732950774 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Tue, 17 Nov 2020 16:25:35 +0300 Subject: Get http working with new container --- go.mod | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 21500c30..0cbbfc70 100755 --- a/go.mod +++ b/go.mod @@ -4,6 +4,7 @@ go 1.15 require ( github.com/fatih/color v1.10.0 + github.com/hashicorp/go-multierror v1.0.0 github.com/json-iterator/go v1.1.10 github.com/pkg/errors v0.9.1 github.com/prometheus/client_golang v1.7.1 @@ -16,6 +17,7 @@ require ( github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a go.uber.org/multierr v1.6.0 go.uber.org/zap v1.16.0 + golang.org/x/net v0.0.0-20200222125558-5a598a2470a0 golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1 -) \ No newline at end of file +) -- cgit v1.2.3 From a2ba8de5eb519f73044a9b1c66f087a5b65e3d45 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Wed, 18 Nov 2020 10:02:58 +0300 Subject: Add Reset --- go.mod | 3 +++ 1 file changed, 3 insertions(+) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 0cbbfc70..5cd5e540 100755 --- a/go.mod +++ b/go.mod @@ -3,16 +3,19 @@ module github.com/spiral/roadrunner/v2 go 1.15 require ( + github.com/cenkalti/backoff/v4 v4.1.0 github.com/fatih/color v1.10.0 github.com/hashicorp/go-multierror v1.0.0 github.com/json-iterator/go v1.1.10 github.com/pkg/errors v0.9.1 github.com/prometheus/client_golang v1.7.1 github.com/shirou/gopsutil v3.20.10+incompatible + github.com/sirupsen/logrus v1.6.0 github.com/spf13/viper v1.7.1 github.com/spiral/endure v1.0.0-beta19 github.com/spiral/errors v1.0.4 github.com/spiral/goridge/v2 v2.4.6 + github.com/spiral/roadrunner v1.8.4 github.com/stretchr/testify v1.6.1 github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a go.uber.org/multierr v1.6.0 -- cgit v1.2.3 From e9595a5c133ff02b765c0b59913593e7f91bc4e7 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Wed, 18 Nov 2020 18:50:49 +0300 Subject: Update static_pool_test, add pause for getting workers --- go.mod | 2 -- 1 file changed, 2 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index e0d0305b..0cbbfc70 100755 --- a/go.mod +++ b/go.mod @@ -3,14 +3,12 @@ module github.com/spiral/roadrunner/v2 go 1.15 require ( - github.com/cenkalti/backoff/v4 v4.1.0 github.com/fatih/color v1.10.0 github.com/hashicorp/go-multierror v1.0.0 github.com/json-iterator/go v1.1.10 github.com/pkg/errors v0.9.1 github.com/prometheus/client_golang v1.7.1 github.com/shirou/gopsutil v3.20.10+incompatible - github.com/sirupsen/logrus v1.6.0 github.com/spf13/viper v1.7.1 github.com/spiral/endure v1.0.0-beta19 github.com/spiral/errors v1.0.4 -- cgit v1.2.3 From be4aadb5384fd8b97c927f3ef48383dc5b23b345 Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Tue, 24 Nov 2020 15:52:15 +0300 Subject: md5 -> sha512 h2c tests fcgi tests plugin tests updated --- go.mod | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 0cbbfc70..036ed2f9 100755 --- a/go.mod +++ b/go.mod @@ -15,9 +15,11 @@ require ( github.com/spiral/goridge/v2 v2.4.6 github.com/stretchr/testify v1.6.1 github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a + github.com/yookoala/gofast v0.4.0 go.uber.org/multierr v1.6.0 go.uber.org/zap v1.16.0 - golang.org/x/net v0.0.0-20200222125558-5a598a2470a0 - golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e - golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1 + golang.org/x/net v0.0.0-20201021035429-f5854403a974 + golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9 + golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f + golang.org/x/tools v0.0.0-20201119174615-0557df368a99 // indirect ) -- cgit v1.2.3 From 1b0b033bcf4969e401b0c34b82171aa0b60b12cf Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Wed, 25 Nov 2020 21:56:26 +0300 Subject: Add mock logger, test for errors in log --- go.mod | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'go.mod') diff --git a/go.mod b/go.mod index 036ed2f9..ea794778 100755 --- a/go.mod +++ b/go.mod @@ -3,14 +3,17 @@ module github.com/spiral/roadrunner/v2 go 1.15 require ( + github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect github.com/fatih/color v1.10.0 + github.com/go-ole/go-ole v1.2.4 // indirect + github.com/golang/mock v1.4.4 github.com/hashicorp/go-multierror v1.0.0 github.com/json-iterator/go v1.1.10 github.com/pkg/errors v0.9.1 github.com/prometheus/client_golang v1.7.1 github.com/shirou/gopsutil v3.20.10+incompatible github.com/spf13/viper v1.7.1 - github.com/spiral/endure v1.0.0-beta19 + github.com/spiral/endure v1.0.0-beta20 github.com/spiral/errors v1.0.4 github.com/spiral/goridge/v2 v2.4.6 github.com/stretchr/testify v1.6.1 -- cgit v1.2.3