diff options
author | Valery Piashchynski <[email protected]> | 2023-03-27 11:43:42 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2023-03-27 11:44:07 +0200 |
commit | f69058cc6a01e00e5a9edf5a4835b92d40002282 (patch) | |
tree | a130cc00f0e9146d25f3b0baaae212eb077f8259 /container/plugins.go | |
parent | 01bb0d01f37314028b3308ccf2679ec8225bbbd9 (diff) |
chore(plugins): deprecate (remove) reload plugin
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'container/plugins.go')
-rw-r--r-- | container/plugins.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/container/plugins.go b/container/plugins.go index b77f626d..3e12d5e6 100644 --- a/container/plugins.go +++ b/container/plugins.go @@ -25,7 +25,6 @@ import ( "github.com/roadrunner-server/prometheus/v4" proxyIP "github.com/roadrunner-server/proxy_ip_parser/v4" "github.com/roadrunner-server/redis/v4" - "github.com/roadrunner-server/reload/v4" "github.com/roadrunner-server/resetter/v4" rpcPlugin "github.com/roadrunner-server/rpc/v4" "github.com/roadrunner-server/send/v4" @@ -54,8 +53,6 @@ func Plugins() []any { //nolint:funlen &appLogger.Plugin{}, // metrics plugin &metrics.Plugin{}, - // reload plugin - &reload.Plugin{}, // rpc plugin (workers, reset) &rpcPlugin.Plugin{}, // server plugin (NewWorker, NewWorkerPool) |