What happens in terms of retries if you have an alarm that is triggered and that alarm handler also

What happens in terms of retries if you have an alarm that is triggered and that alarm handler also sets an alarm, folloowed by a failure:

eg:
async alarm() {
  await setAlarm(someTimestampFarIntoTheFuture)
  await somethingThatWillFail()
}


do the retries get blown away by the new alarm time?
Was this page helpful?