Skip to content

Commit

Permalink
Pass TTR StringValue as a string (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
timkelty authored Nov 17, 2023
1 parent 9e9d465 commit ab00a79
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 ab00a79

Please sign in to comment.