Deadlock using Aggregator + Redis

后端 未结 1 1380
长发绾君心
长发绾君心 2021-01-26 18:27

This post is related to this one

Spring integration deadlock using Aggregator + MessageStoreReaper + Redis?

but this message is too long to post. I continue wit

1条回答
  •  -上瘾入骨i
    2021-01-26 19:09

    Actually, I do see one place...

            finally {
                if (removeGroup) {
                    this.remove(group);
                }
                lock.unlock();
            }
    

    ...if the message store throws an exception during the remove, we would skip the unlock - do you see anything in the log?

    0 讨论(0)
提交回复
热议问题