Error handling is not working correctly.
2 min loom video:
Error handling is not working correctly.
2 min loom video:
Could you please describe your issue for the benefit of others here? It could also help you receive answers faster.
I’d love to learn more about the video you linked, but unfortunately, not everyone can access or watch videos on forums for various reasons. Some folks might be:
By providing a brief description or summary, you can reach a wider audience and ensure everyone can participate in the discussion on this forum. It also helps folks quickly gauge if the video aligns with their interests and needs.
If you need further assistance, please provide the following:
Please share screenshots of relevant module fields and filters in question? It would really help other community members to see what you’re looking at.
You can upload images here using the Upload icon in the text editor:
Please export the scenario blueprint file to allow others to view the mappings and settings. At the bottom of the scenario editor, you can click on the three dots to find the Export Blueprint menu item.
(Note: Exporting your scenario will not include private information or keys to your connections)
Uploading it here will look like this:
blueprint.json (12.3 KB)
Please provide the output bundles of the modules by running the scenario, then click the white speech bubble on the top-right of each module and select “Download output bundles”.
Save the bundle contents in your text editor as a bundle.txt
file, and upload it here into this discussion thread.
Uploading it here will look like this:
bundle.txt (12.3 KB)
If you are unable to upload files on this forum, alternatively you can paste the formatted output bundle in this manner:
Either add three backticks ```
before and after the code, like this:
```
input/output bundle content goes here
```
Or use the format code button in the editor:
Providing the output bundles will allow others to replicate what is going on in the scenario even if they do not use the external service.
Following these steps will allow others to assist you here. Thanks!
Hey @samliew
I have an http module.
I have turned on the advanced option and select “YES” in evalauate error expect 2XX and 3XX
I got 429 error which is api rate limit hit.
Now I have 120 secs wait time and break module.
In break module, I have 5 attempts with 3 min time gap.
But the break module does 1 attempt and then gives error.
I have exlplained everything in 2 min video.
The above is scenario is to make the api rate limit so the main scenario get api rate limit and we can run the break error module and check if it’s working on it.
Forget the above scenrio (screenshot @samliew has shared)
In your main scenario,
You have two options:
Clone the original module, and put it after the Sleep module. Replace the break with a resume.
Remove the sleep module. The break handler sets the retry period.
The break’s retry only works when directly attached to (immediately follows after) the module causing the error.