Reputation: 1
I have created a logic app consumption which use blob trigger when a new blob added to container it will trigger. Im using set of action and in that action if I face any error the trigger retry is not working. I tried with default and fixed interval and exponential not working any of it . I tried to mock 503 and connection time out for this as I'm facing this in my original implementation. As per the notes mentioned under the retry policy 408, 503 and connection error it should retry but none of the retry working as expected...
Any idea what's happening wrong in this??? Is it latest bug from Microsoft???
Used user assigned managed identity for blob access. Tried to reproduce 503 error and connection time out in http action.. tried changing trigger retry policy to default, fixed interval and exponential still nothing works. Trigger retry not happening
Upvotes: 0
Views: 144
Reputation: 6497
Retry policy does work in logic app. I have the below configuration in HTTP action.
I am intentionally throwing 500 error to initiate the retry policy and I am able to get the expected response.
References-
retry after failures in Azure logic apps – Mohamed Ashiq Faleel.
Upvotes: 0