You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JIRA: https://jira.spring.io/browse/INT-4441
Possible concurrent updates to `AbstractCorrelatingMessageHandler.groupIds` and
`expireGroupScheduledFutures`.
(cherry picked from commit f9d5198)
Copy file name to clipboardExpand all lines: spring-integration-core/src/main/java/org/springframework/integration/aggregator/AbstractCorrelatingMessageHandler.java
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -20,12 +20,11 @@
20
20
importjava.util.Collections;
21
21
importjava.util.Comparator;
22
22
importjava.util.Date;
23
-
importjava.util.HashMap;
24
-
importjava.util.HashSet;
25
23
importjava.util.List;
26
24
importjava.util.Map;
27
25
importjava.util.Set;
28
26
importjava.util.UUID;
27
+
importjava.util.concurrent.ConcurrentHashMap;
29
28
importjava.util.concurrent.ScheduledFuture;
30
29
importjava.util.concurrent.locks.Lock;
31
30
@@ -98,9 +97,9 @@ public abstract class AbstractCorrelatingMessageHandler extends AbstractMessageP
0 commit comments