Skip to content

Commit c6bdfd9

Browse files
Merge branch '6.4' into 7.0
* 6.4: More go-ip fixes [AssetMapper] Fixing bug where a circular exception could be thrown while making error message Dump Valid constaints on debug command #46544 [DependencyInjection] fix dump xml with array/object/enum default value fix directory casing rename GoIP notifier bridge to GopIp [HttpFoundation] Add a slightly more verbose comment about a warning on UploadedFile [Messenger] BatchHandlerTrait - fix phpdoc typo [SecurityBundle] Remove unused test files Allow passing an `inline_service` to a `service_locator` [Security] Fix error with lock_factory in login_throttling fix(console): fix section output when multiples section with max height Remove me from CODEOWNERS Fix invalid method call + improve exception message Always return bool from messenger amqp conncetion nack [FrameworkBundle] Fix xsd handle-all-throwables [Console] Fix linewraps in OutputFormatter
2 parents 1e33b81 + c674cd0 commit c6bdfd9

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
@@ -440,7 +440,7 @@ public function ack(\AMQPEnvelope $message, string $queueName): bool
440440

441441
public function nack(\AMQPEnvelope $message, string $queueName, int $flags = \AMQP_NOPARAM): bool
442442
{
443-
return $this->queue($queueName)->nack($message->getDeliveryTag(), $flags);
443+
return $this->queue($queueName)->nack($message->getDeliveryTag(), $flags) ?? true;
444444
}
445445

446446
public function setup(): void

0 commit comments

Comments
 (0)