summaryrefslogtreecommitdiff
path: root/plugins/server/tests/plugin_tcp.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-12-21 10:27:10 +0300
committerValery Piashchynski <[email protected]>2020-12-21 10:27:10 +0300
commit2f71f79ac704ed95dad961677b6e602e38641b5d (patch)
tree7452bbedd1444079757a848ad07089bc6093561f /plugins/server/tests/plugin_tcp.go
parent3d4c75aadd9ffd0d46728f48f685de2e1bfc44bb (diff)
Remove unused contex from interfaces. Update pool allocator.
Diffstat (limited to 'plugins/server/tests/plugin_tcp.go')
-rw-r--r--plugins/server/tests/plugin_tcp.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/server/tests/plugin_tcp.go b/plugins/server/tests/plugin_tcp.go
index 866116a7..cdf23e21 100644
--- a/plugins/server/tests/plugin_tcp.go
+++ b/plugins/server/tests/plugin_tcp.go
@@ -79,7 +79,7 @@ func (f *Foo3) Serve() chan error {
}
// should not be errors
- err = sw.Stop(context.Background())
+ err = sw.Stop()
if err != nil {
errCh <- err
return errCh