I have a flow similar to the attached one where I want to keep an infinite loop doing some stuff related to HTTP requests. It's important to notice that there's just one inject operation at start.
What happens if you have one catch node for a specific node (HTTP request) and a global catch? I mean, which one of them would catch an exception if there was one in that node?
An talking about the HTTP request node, what happens when there's an exception/error inside of it such a connection rejected? Does it output anything if there's a catch node observing it either locally (the lowest catch node) or globaly? Does it output anything if there's no catch node observing it and there's an exception/error?
Regards