Hi,
I want to make a integration flow process one message at a time because I am getting data races when trying to store a token value in data store. Is there a way to do this?
The specific problem is this:
I need to store a token value which comes from an api to acces another api. When I receive multiple simultaneous requests when I don't have a token, multiple flows get tokens at the same time, but only the last token is valid since the api invalidates the previous tokens when I get a new one. so some messages failbecause their tokens get invalidated before they can access the next api.