diff options
author | Valery Piashchynski <[email protected]> | 2020-11-02 12:01:05 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-02 12:01:05 +0300 |
commit | 484f85aacbf55f0696a51347989bd35463d71c11 (patch) | |
tree | 82e8140d1574819a444275c58d224523cf236aed /plugins | |
parent | 0622706128f8d9ac381dee49aa4a74fe9b7904b5 (diff) |
Add Makefile to run tests with debug tag (to see stacktrace)
Remove endure errors and replace it with spiral errors
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/app/app.go | 5 | ||||
-rwxr-xr-x | plugins/rpc/rpc.go | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/plugins/app/app.go b/plugins/app/app.go index 9301e38f..312e5bc6 100644 --- a/plugins/app/app.go +++ b/plugins/app/app.go @@ -3,12 +3,13 @@ package app import ( "context" "fmt" - "go.uber.org/zap" "os" "os/exec" "strings" - "github.com/spiral/endure/errors" + "go.uber.org/zap" + + "github.com/spiral/errors" "github.com/spiral/roadrunner/v2" "github.com/spiral/roadrunner/v2/plugins/config" "github.com/spiral/roadrunner/v2/util" diff --git a/plugins/rpc/rpc.go b/plugins/rpc/rpc.go index d272fc72..f299bd55 100755 --- a/plugins/rpc/rpc.go +++ b/plugins/rpc/rpc.go @@ -6,7 +6,7 @@ import ( "go.uber.org/zap" "github.com/spiral/endure" - "github.com/spiral/endure/errors" + "github.com/spiral/errors" "github.com/spiral/goridge/v2" "github.com/spiral/roadrunner/v2/plugins/config" ) |