summaryrefslogtreecommitdiff
path: root/container
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2022-10-23 22:49:34 +0200
committerValery Piashchynski <[email protected]>2022-10-23 22:49:34 +0200
commitc923e64c815cb69c6b9e408a78cfebfdf7dce5ea (patch)
treeb560c87bece7a9b69e8a990549e21ef9be020737 /container
parent9451d84399b6b9f79866b843c879f0d9cfc63674 (diff)
chore: remove deprecated websockets/broadcast plugins
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'container')
-rw-r--r--container/plugins.go23
1 files changed, 6 insertions, 17 deletions
diff --git a/container/plugins.go b/container/plugins.go
index 9ceaa53b..188ce073 100644
--- a/container/plugins.go
+++ b/container/plugins.go
@@ -5,7 +5,6 @@ import (
"github.com/roadrunner-server/amqp/v3"
"github.com/roadrunner-server/beanstalk/v3"
"github.com/roadrunner-server/boltdb/v3"
- "github.com/roadrunner-server/broadcast/v3"
"github.com/roadrunner-server/fileserver/v3"
grpcPlugin "github.com/roadrunner-server/grpc/v3"
"github.com/roadrunner-server/gzip/v3"
@@ -34,7 +33,6 @@ import (
"github.com/roadrunner-server/static/v3"
"github.com/roadrunner-server/status/v3"
"github.com/roadrunner-server/tcp/v3"
- "github.com/roadrunner-server/websockets/v3"
rrt "github.com/temporalio/roadrunner-temporal/v2"
)
@@ -81,33 +79,24 @@ func Plugins() []any { //nolint:funlen
&proxyIP.Plugin{},
&rrOtel.Plugin{},
&fileserver.Plugin{},
- // third-party--
- &cache.Plugin{},
- // --
// ===================
-
+ // gRPC
&grpcPlugin.Plugin{},
- // kv + ws + jobs plugin
+ // ===================
+ // KV + Jobs
&memory.Plugin{},
// KV + Jobs
&boltdb.Plugin{},
- // broadcast via memory or redis
- // used in conjunction with Websockets, memory and redis plugins
- &broadcast.Plugin{},
- // ======== websockets broadcast bundle
- &websockets.Plugin{},
- &redis.Plugin{},
- // =========
-
// ============== KV
&kv.Plugin{},
&memcached.Plugin{},
+ &redis.Plugin{},
// ==============
-
// raw TCP connections handling
&tcp.Plugin{},
-
// temporal plugin
&rrt.Plugin{},
+ // third-party--
+ &cache.Plugin{},
}
}