Skip to content

Commit

Permalink
resolved issue #955
Browse files Browse the repository at this point in the history
  • Loading branch information
christiangoerdes committed Mar 14, 2024
1 parent 741dd07 commit 280db41
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
import com.predic8.membrane.core.interceptor.AbstractInterceptor;
import com.predic8.membrane.core.interceptor.Outcome;

import java.util.*;
import java.util.ArrayList;
import java.util.List;

import static com.predic8.membrane.core.interceptor.Outcome.CONTINUE;

Expand Down Expand Up @@ -57,6 +58,11 @@ public Outcome handleResponse(Exchange exc) throws Exception {
return CONTINUE;
}

@Override
public void handleAbort(Exchange exc) {
accessLogInterceptorService.handleAccessLogging(exc);
}

@SuppressWarnings("unused")
public List<AdditionalVariable> getAdditionalPatternList() {
return additionalVariables;
Expand Down

0 comments on commit 280db41

Please sign in to comment.