diff options
author | Valery Piashchynski <[email protected]> | 2020-11-18 10:37:44 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-18 10:37:44 +0300 |
commit | be18313f6bf8f903f2d2ba3ca812ad8546c329f6 (patch) | |
tree | 0a6d7382a526a59a034f85d60b3f2b24e103ffcd /plugins/server/tests/plugin_tcp.go | |
parent | 6236aac37bd1661b20400689f66d1e92283c5111 (diff) |
Informer plugin ready
Diffstat (limited to 'plugins/server/tests/plugin_tcp.go')
-rw-r--r-- | plugins/server/tests/plugin_tcp.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/server/tests/plugin_tcp.go b/plugins/server/tests/plugin_tcp.go index 39044577..89757a02 100644 --- a/plugins/server/tests/plugin_tcp.go +++ b/plugins/server/tests/plugin_tcp.go @@ -12,11 +12,11 @@ import ( type Foo3 struct { configProvider config.Configurer - wf server.WorkerFactory + wf server.Server pool roadrunner.Pool } -func (f *Foo3) Init(p config.Configurer, workerFactory server.WorkerFactory) error { +func (f *Foo3) Init(p config.Configurer, workerFactory server.Server) error { f.configProvider = p f.wf = workerFactory return nil |