Skip to content

Commit e4c3b5b

Browse files
committed
Don't mention the term "slave" in public error messages
1 parent 63430a7 commit e4c3b5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/RequestHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public function getNextSlave()
160160
$this->loop->futureTick([$this, 'getNextSlave']);
161161
} else {
162162
// Return a "503 Service Unavailable" response
163-
$this->output->writeln(\sprintf('No slaves available to handle the request and timeout %d seconds exceeded', $this->timeout));
163+
$this->output->writeln(\sprintf('No worker processes available to handle the request and timeout %d seconds exceeded', $this->timeout));
164164
$this->incoming->write($this->createErrorResponse('503 Service Temporarily Unavailable', 'Service Temporarily Unavailable'));
165165
$this->incoming->end();
166166
}

0 commit comments

Comments
 (0)