|
@@ -131,7 +131,7 @@ discard block |
|
|
block discarded – undo |
|
131
|
131
|
$this->client->pipeline(function (ClientContextInterface $client) use ($queueName) { |
|
132
|
132
|
self::cDeleteQueue($client, $queueName); |
|
133
|
133
|
}); |
|
134
|
|
- $this->clearSchedule([$queueName]); |
|
|
134
|
+ $this->clearSchedule([ $queueName ]); |
|
135
|
135
|
} |
|
136
|
136
|
|
|
137
|
137
|
public function purgeCommand(string $queueName, string $id) |
|
@@ -238,7 +238,7 @@ discard block |
|
|
block discarded – undo |
|
238
|
238
|
|
|
239
|
239
|
private function storeCommandAndCheckIfIdReserved(string $queueName, string $id, string $serialized): bool |
|
240
|
240
|
{ |
|
241
|
|
- list (, , $isReserved) = $this->client->pipeline( |
|
|
241
|
+ list (,, $isReserved) = $this->client->pipeline( |
|
242
|
242
|
function (ClientContextInterface $client) use ($queueName, $id, $serialized) { |
|
243
|
243
|
$client->hset(":{$queueName}:command_store", $id, $serialized); |
|
244
|
244
|
self::cAddQueue($client, $queueName); |
Please login to merge, or discard this patch.