Dear all,
We have an azure automation account in which we are running runbook to perform automation task.
Some tasks gets request from a Jira Ticket which then call Azure Automation API in order to run the workbook.
Then the runbook deliver back the status of the execution through a Jira Rest endpoint in order to update the ticket.
The case that we need to face on is that when the runbook complete with any status, it is calling the Jira REST endpoint in order to send the new status of the last execution. It could happen that during the endpoint call, the Jira instance might be down for some reason or not reachable. At the time the status will never be received has the runbook can not execute again to send the status and jira has no idea about it. So in this case the call goes to no where.
As fas as I could read from the EventGrid docuementation, it has a kind of retry job feature.
How does this can be apply in our case we try to solve ?
regards