ARTEMIS-1975 Fixing Typo on QueueImpl::errorProcessing

This commit is contained in:
Clebert Suconic 2020-04-16 10:52:45 -04:00
parent 93b68eb0f6
commit d9aacec8bb
1 changed files with 1 additions and 1 deletions

View File

@ -3674,7 +3674,7 @@ public class QueueImpl extends CriticalComponentImpl implements Queue {
/** This will print errors and decide what to do with the errored consumer from the protocol layer. */
@Override
public void errorProcessing(Consumer consumer, Throwable t, MessageReference reference) {
executor.execute(() -> errorProcessing(consumer, t, reference));
executor.execute(() -> internalErrorProcessing(consumer, t, reference));
}
private void internalErrorProcessing(Consumer consumer, Throwable t, MessageReference reference) {