Skip to content

Commit

Permalink
Merge branch '5.4' into 6.4
Browse files Browse the repository at this point in the history
* 5.4:
  Do not produce notice/warning when consuming from multiple transports and explicitly listed queues
  [FrameworkBundle] Check if the _route attribute exists on the request
  [HttpClient] Make retry strategy work again
  [Mailer] Fix signed emails breaking the profiler
  [Validator] Update Spanish (es) translations
  Fix SQS visibility_timeout type
  • Loading branch information
nicolas-grekas committed Feb 14, 2024
2 parents 7f47bb0 + 409bf81 commit 4411a70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Transport/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public static function fromDsn(#[\SensitiveParameter] string $dsn, array $option
'buffer_size' => (int) $options['buffer_size'],
'wait_time' => (int) $options['wait_time'],
'poll_timeout' => $options['poll_timeout'],
'visibility_timeout' => $options['visibility_timeout'],
'visibility_timeout' => null !== $options['visibility_timeout'] ? (int) $options['visibility_timeout'] : null,
'auto_setup' => filter_var($options['auto_setup'], \FILTER_VALIDATE_BOOL),
'queue_name' => (string) $options['queue_name'],
];
Expand Down

0 comments on commit 4411a70

Please sign in to comment.