Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added an option to wrap current spring rabbit components #636

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Polish
  • Loading branch information
marcingrzejszczak committed Mar 6, 2018
commit 61a1bc4395ed910526771fa4cca2001634a5e55b
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private MessagePostProcessor[] currentProcessorsWithTracing(
if (processors != null) {
newProcessors.addAll(processors);
}
return newProcessors.toArray(new MessagePostProcessor[] {});
return newProcessors.toArray(new MessagePostProcessor[0]);
}

private boolean hasTracedProcessor(Collection<MessagePostProcessor> processors) {
Expand Down Expand Up @@ -132,17 +132,15 @@ public SimpleRabbitListenerContainerFactory decorateSimpleMessageListenerContain

private Advice[] chainListWithTracing(Advice[] chain) {
if (chain == null) {
return chain;
return new Advice[] { tracingRabbitListenerAdvice };
}
List<Advice> currentChain = Arrays.asList(chain);
List<Advice> chainList = new ArrayList<>();
if (!hasTracedListenerAdvice(currentChain)) {
chainList.add(tracingRabbitListenerAdvice);
}
if (chain != null) {
chainList.addAll(currentChain);
}
return chainList.toArray(new Advice[] {});
chainList.addAll(currentChain);
return chainList.toArray(new Advice[0]);
}

private boolean hasTracedListenerAdvice(List<Advice> currentChain) {
Expand Down