Skip to content

Commit

Permalink
Pass TTR StringValue as a string
Browse files Browse the repository at this point in the history
  • Loading branch information
timkelty authored Nov 8, 2023
1 parent 9e9d465 commit 1572087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drivers/sqs/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ protected function pushMessage($message, $ttr, $delay, $priority)
'MessageAttributes' => [
'TTR' => [
'DataType' => 'Number',
'StringValue' => $ttr,
'StringValue' => (string) $ttr,
],
],
];
Expand Down

0 comments on commit 1572087

Please sign in to comment.