diff options
author | Valery Piashchynski <[email protected]> | 2021-09-15 17:13:10 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-09-15 17:13:10 +0300 |
commit | d445f59b5f9c55719dec16eca96722a913f9e839 (patch) | |
tree | d62a1b7b2f1cacca89e4302bab904cb6fabb416b /tests | |
parent | e4c84c703c2c798e4fa8ff8cf97e5e59e81ef4ed (diff) |
Finish GRPC plugin
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/psr-worker-bench.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/psr-worker-bench.php b/tests/psr-worker-bench.php index 80fc435c..f8b1b47c 100644 --- a/tests/psr-worker-bench.php +++ b/tests/psr-worker-bench.php @@ -18,6 +18,7 @@ $psr7 = new RoadRunner\Http\PSR7Worker( while ($req = $psr7->waitRequest()) { try { + sleep(3); $resp = new \Nyholm\Psr7\Response(); $resp->getBody()->write("hello world"); |