From 91da114c18f402ad7973e7cf6c22c2e9a4efb7ef Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Wed, 5 Feb 2025 22:20:50 +0100 Subject: [PATCH] fix: option for concurrency not working option name seems to be accidentally renamed --- src/WebPush.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WebPush.php b/src/WebPush.php index e470b6e..903e1e3 100644 --- a/src/WebPush.php +++ b/src/WebPush.php @@ -199,7 +199,7 @@ public function flushPooled($callback, ?int $batchSize = null, ?int $requestConc foreach ($batches as $batch) { $batch = $this->prepare($batch); $pool = new Pool($this->client, $batch, [ - 'requestConcurrency' => $requestConcurrency, + 'concurrency' => $requestConcurrency, 'fulfilled' => function (ResponseInterface $response, int $index) use ($callback, $batch) { /** @var RequestInterface $request **/ $request = $batch[$index];