INT-3792: Fix Some SONAR Vulnerabilities
JIRA: https://jira.spring.io/browse/INT-3792 * Remove `Serializable` requirement for `ThreadStatePropagationChannelInterceptor` generic type * Increase `PriorityChannelTests` timeout
This commit is contained in:
committed by
Gary Russell
parent
7f504efa1b
commit
0f689558ab
@@ -181,7 +181,7 @@ public class PollableJmsChannel extends AbstractJmsChannel
|
||||
@Override
|
||||
public ChannelInterceptor removeInterceptor(int index) {
|
||||
ChannelInterceptor interceptor = super.removeInterceptor(index);
|
||||
if (interceptor != null && interceptor instanceof ExecutorChannelInterceptor) {
|
||||
if (interceptor instanceof ExecutorChannelInterceptor) {
|
||||
this.executorInterceptorsSize--;
|
||||
}
|
||||
return interceptor;
|
||||
|
||||
Reference in New Issue
Block a user