We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 941d4c8 + a5c8d96 commit 66837b8Copy full SHA for 66837b8
pkg/sqs/SqsProducer.php
@@ -56,7 +56,7 @@ public function send(Destination $destination, Message $message): void
56
];
57
58
if (null !== $this->deliveryDelay) {
59
- $arguments['DelaySeconds'] = (int) $this->deliveryDelay / 1000;
+ $arguments['DelaySeconds'] = (int) ceil($this->deliveryDelay / 1000);
60
}
61
62
if ($message->getDelaySeconds()) {
0 commit comments