is there anyone who had a similar issue that the SQS Listener is picking the same message twice.
Scenario:
- I send the SQS message on the queue
- I receive that message in javax.jms.Message format
- I process the message
- I acknowledge the message
In most cases, the acknowledge function works just fine and it deletes the message but there are cases where the listener is picking that message twice in a row...
My question would be, is there some way I can make sure that the message won't be picked twice?