Skip to content

Commit 89da125

Browse files
committed
Forward Cancellation in ConnectionLimitingServerSocket
1 parent 027bd02 commit 89da125

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Driver/ConnectionLimitingServerSocket.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function accept(?Cancellation $cancellation = null): ?Socket
2121
{
2222
$lock = $this->semaphore->acquire();
2323

24-
$socket = $this->socketServer->accept();
24+
$socket = $this->socketServer->accept($cancellation);
2525
if (!$socket) {
2626
$lock->release();
2727
return null;

0 commit comments

Comments
 (0)