- Delayed messages, published with
Upstash-DelayorUpstash-Not-Before. - Retrying messages, whose last delivery attempt failed and which are waiting out the retry delay before the next attempt.
Releasing a message does not add an attempt. A retrying message uses the
attempt it was already scheduled for, so if it was on its last retry and fails
again, it goes to the DLQ as usual.
From the console
Open the Upstash Console, go to theLogs
tab and select the message. Waiting messages show a Run now button (for
delays) or a Retry now button (for retries) at the top of the details panel,
and next to the step that is holding the message back.

A message published with a two hour delay, released with Run now

A message waiting out a one day retry delay, released with Retry now
From the API
The console calls the retry a message now endpoint. You can call it yourself with the message ID:200 when a waiting message was released and 404 when
the message is not waiting, for example because it is already being delivered.
Messages in a queue cannot be released this way and
return 400.