Skip to content

Commit ffa384d

Browse files
Merge branch '6.3' into 6.4
* 6.3: [Process] Fix test case [Workflow] fix MermaidDumper when place contains special char [Crawler] Fix regression where cdata nodes will return empty string [DoctrineBridge] Bugfix - Allow to remove LazyLoaded listeners by object [Messenger] Add forward compatibily with php-amqp v2
2 parents 6b95f3c + 59733c9 commit ffa384d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Transport/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ public function get(string $queueName): ?\AMQPEnvelope
435435

436436
public function ack(\AMQPEnvelope $message, string $queueName): bool
437437
{
438-
return $this->queue($queueName)->ack($message->getDeliveryTag());
438+
return $this->queue($queueName)->ack($message->getDeliveryTag()) ?? true;
439439
}
440440

441441
public function nack(\AMQPEnvelope $message, string $queueName, int $flags = \AMQP_NOPARAM): bool

0 commit comments

Comments
 (0)