diff options
author | Valery Piashchynski <[email protected]> | 2023-01-15 15:26:15 +0100 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2023-01-15 15:26:15 +0100 |
commit | e5a118316453cd956aa6f2153c8b37e9b5354ba2 (patch) | |
tree | 28e7f4eada8194073afae0f3d90493c3735aac3e /container | |
parent | 0aa148d0f9f0780a94abc9ef323da44e0a3fa500 (diff) |
update version and tests
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'container')
-rw-r--r-- | container/config_test.go | 2 | ||||
-rw-r--r-- | container/plugins.go | 3 | ||||
-rw-r--r-- | container/test/endure_ok_error.yaml (renamed from container/test/endure_ok_fatal.yaml) | 2 | ||||
-rw-r--r-- | container/test/endure_ok_panic.yaml | 5 |
4 files changed, 2 insertions, 10 deletions
diff --git a/container/config_test.go b/container/config_test.go index 08f1f8b6..fdc81fce 100644 --- a/container/config_test.go +++ b/container/config_test.go @@ -5,7 +5,7 @@ import ( "time" "github.com/roadrunner-server/config/v4" - "github.com/roadrunner-server/roadrunner/v2/container" + "github.com/roadrunner-server/roadrunner/v2023/container" "github.com/stretchr/testify/assert" "golang.org/x/exp/slog" ) diff --git a/container/plugins.go b/container/plugins.go index f983b6eb..93741c79 100644 --- a/container/plugins.go +++ b/container/plugins.go @@ -13,7 +13,6 @@ import ( httpPlugin "github.com/roadrunner-server/http/v4" "github.com/roadrunner-server/informer/v4" "github.com/roadrunner-server/jobs/v4" - //"github.com/roadrunner-server/kafka/v4" "github.com/roadrunner-server/kv/v4" "github.com/roadrunner-server/logger/v4" "github.com/roadrunner-server/memcached/v4" @@ -69,8 +68,6 @@ func Plugins() []any { //nolint:funlen &sqs.Plugin{}, &nats.Plugin{}, &beanstalk.Plugin{}, - // new in 2.11 - //&kafka.Plugin{}, // ========= // // http server plugin with middleware diff --git a/container/test/endure_ok_fatal.yaml b/container/test/endure_ok_error.yaml index 69e16467..a6bfaebc 100644 --- a/container/test/endure_ok_fatal.yaml +++ b/container/test/endure_ok_error.yaml @@ -2,4 +2,4 @@ endure: grace_period: 10s print_graph: true retry_on_fail: true - log_level: fatal + log_level: error diff --git a/container/test/endure_ok_panic.yaml b/container/test/endure_ok_panic.yaml deleted file mode 100644 index 5ac4dc9e..00000000 --- a/container/test/endure_ok_panic.yaml +++ /dev/null @@ -1,5 +0,0 @@ -endure: - grace_period: 10s - print_graph: true - retry_on_fail: true - log_level: panic |