Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7f87428

Browse files
committed
bug #60494 [Messenger] fix: Add argument as integer (overexpOG)
This PR was merged into the 6.4 branch. Discussion ---------- [Messenger] fix: Add argument as integer | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | | License | MIT ## Description Added an argument ('x-delivery-limit') to the ARGUMENT_AS_INTEGER array. This change was made to ensure compatibility with RabbitMQ, as the argument was previously being sent as a string, which caused errors. By adding it to the ARGUMENT_AS_INTEGER array, the argument is now properly sent as an integer instead of a string, resolving the issue. Commits ------- 4cdbbe5 fix: Add argument as integer
2 parents 6eef5a7 + 4cdbbe5 commit 7f87428

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Symfony/Component/Messenger/Bridge/Amqp/Transport/Connection.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class Connection
3131
'x-max-length-bytes',
3232
'x-max-priority',
3333
'x-message-ttl',
34+
'x-delivery-limit',
3435
];
3536

3637
/**

0 commit comments

Comments
 (0)