summaryrefslogtreecommitdiff
path: root/plugins/rpc/tests/plugin2.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-11-04 16:38:54 +0300
committerValery Piashchynski <[email protected]>2020-11-04 16:38:54 +0300
commita3dd9f2a28d91df0e0d1ad229b67297206357c07 (patch)
treec53893144e9f2228b490ee0f0a66ff875706d36b /plugins/rpc/tests/plugin2.go
parent0304f09d7e5fa0c76b86429a654aeb366cec6391 (diff)
Fix CI issues, add RPC tests to the CI
Diffstat (limited to 'plugins/rpc/tests/plugin2.go')
-rw-r--r--plugins/rpc/tests/plugin2.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/rpc/tests/plugin2.go b/plugins/rpc/tests/plugin2.go
index 854bf097..2a0ae1a8 100644
--- a/plugins/rpc/tests/plugin2.go
+++ b/plugins/rpc/tests/plugin2.go
@@ -1,6 +1,7 @@
package tests
import (
+ "fmt"
"net"
"net/rpc"
"time"
@@ -37,6 +38,8 @@ func (p2 *Plugin2) Serve() chan error {
errCh <- err
return
}
+ fmt.Println("--------------")
+ fmt.Println(ret)
if ret != "Hello, username: Valery" {
errCh <- errors.E("wrong response")
return