diff --git a/src/Driver/ConnectionLimitingServerSocket.php b/src/Driver/ConnectionLimitingServerSocket.php index 88763b6f..3af4cb52 100644 --- a/src/Driver/ConnectionLimitingServerSocket.php +++ b/src/Driver/ConnectionLimitingServerSocket.php @@ -21,7 +21,7 @@ public function accept(?Cancellation $cancellation = null): ?Socket { $lock = $this->semaphore->acquire(); - $socket = $this->socketServer->accept(); + $socket = $this->socketServer->accept($cancellation); if (!$socket) { $lock->release(); return null;