I’m using the key value <“chatLock”, chatNumber> at Redis, in the same workflow.
The idea is to answer only the last message. So the latest message always override “chatLock”
But when 2 executions are in progress, even with a Wait of 5 seconds at the at the end they always get their own lock value
Sounds like Redis key have a execution ID and prevents to override the key between executions.
Need help!