Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
ConcurrentMessageListenerContainer.isInExpectedState
consistenc…
…y problem `ConcurrentMessageListenerContainer#isInExpectedState` throw `ConcurrentModificationException` needs simultaneously invoke `KafkaMessageListenerContainer#setStoppedNormally`, `ConcurrentMessageListenerContainer#isInExpectedState`, modify property in stream. `TestOOMError#testOOMCMLC` throw `ConcurrentModificationException`, when assertThat container.isInExpectedState(), because of container maybe is not in expected state. concurrent container publishes one time, child container publishes concurrency time, `CountDownLatch` needs to modify to 2. * Fix `ConcurrentMessageListenerContainer.isInExpectedState` consistency problem * Fix `TestOOMError#testOOMCMLC` throw `ConcurrentModificationException`
- Loading branch information