Expand my Community achievements bar.

Add Custom Retry To O365 Modules In Fusion

Avatar

Level 2

7/22/24

Description -

I would like the ability to change retry parameters directly in O365 modules, including number of retries and period of time between retries.

Why is this feature important to you -

Currently, adding this type of error handling involves adding at least two modules per retry, becoming large and difficult to manage very quickly, especially if I need to make changes to the module's behaviour and then copy this multiple times in the case there is a connection error while making the request.

How would you like the feature to work -

Have retry behaviour parameters built into the existing module, even under a form of 'advanced settings'. Alternatively, Adobe could have pre-configured settings for this, to make the current module operation more robust, without any more visible complexity for users.

Current Behaviour -

It isn't uncommon, even in fully working systems, for Microsoft Graph API to return 504 errors when sending requests. Especially if you are doing operations in excel across a number of rows. At the moment under Error Handling I have been putting a sleep and copy of the module below in order to reduce the occurrence of these issues stopping the whole flow, and allow each scenario flow to complete before the next one starts (which I can't properly achieve with the current 'break' error handler).