Skip to content
Open
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -98,17 +98,17 @@ public static <TRequest, TResponse> Pair<TRequest, TResponse> onServiceEnter(
return null;
}

if (shouldSkip(adapter, httpServletRequest)) {
CaseEventDispatcher.onEvent(CaseEvent.ofEnterEvent());
return null;
}

RequestHandlerManager.preHandle(httpServletRequest, adapter.getServletVersion());
// skip servlet if attr with arex-skip-flag
if (Boolean.TRUE.equals(adapter.getAttribute(httpServletRequest, ArexConstants.SKIP_FLAG))) {
return null;
}

if (shouldSkip(adapter, httpServletRequest)) {
CaseEventDispatcher.onEvent(CaseEvent.ofEnterEvent());
return null;
}

// 302 Redirect request
String redirectRecordId = getRedirectRecordId(adapter, httpServletRequest);
if (StringUtil.isNotEmpty(redirectRecordId)) {
Expand Down