diff options
-rw-r--r-- | pool.go | 2 | ||||
-rw-r--r-- | source/Worker.php | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -11,7 +11,7 @@ import ( const ( // StopRequest can be sent by worker to indicate that restart is required. - StopRequest = "{\"stop\": true}" + StopRequest = "{\"stop\":true}" ) // Pool controls worker creation, destruction and task routing. diff --git a/source/Worker.php b/source/Worker.php index 474101b4..5835baf2 100644 --- a/source/Worker.php +++ b/source/Worker.php @@ -24,7 +24,7 @@ use Spiral\RoadRunner\Exceptions\RoadRunnerException; class Worker { // Send as response context to request worker termination - const STOP = '{"stop": true}'; + const STOP = '{"stop":true}'; /** @var Relay */ private $relay; |