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.
1 parent b4ad124 commit a5c8d96Copy full SHA for a5c8d96
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