diff options
Diffstat (limited to 'tests/plugins/server')
-rw-r--r-- | tests/plugins/server/socket.php | 2 | ||||
-rw-r--r-- | tests/plugins/server/tcp.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/plugins/server/socket.php b/tests/plugins/server/socket.php index 3159c445..f90dda6f 100644 --- a/tests/plugins/server/socket.php +++ b/tests/plugins/server/socket.php @@ -18,7 +18,7 @@ $rr = new RoadRunner\Worker($relay); while ($in = $rr->waitPayload()) { try { - $rr->send((string)$in->body); + $rr->respond(new RoadRunner\Payload((string)$in->body)); } catch (\Throwable $e) { $rr->error((string)$e); } diff --git a/tests/plugins/server/tcp.php b/tests/plugins/server/tcp.php index 88c49848..873f25b2 100644 --- a/tests/plugins/server/tcp.php +++ b/tests/plugins/server/tcp.php @@ -13,7 +13,7 @@ $rr = new RoadRunner\Worker($relay); while ($in = $rr->waitPayload()) { try { - $rr->send((string)$in->body); + $rr->respond(new RoadRunner\Payload((string)$in->body)); } catch (\Throwable $e) { $rr->error((string)$e); } |