Skip to content

Commit 1e46ec5

Browse files
committed
#82 - had one reference trying to resolve context using http request rather than http command
1 parent 57b74db commit 1e46ec5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cougar-framework/jetty-transport/src/main/java/com/betfair/cougar/transport/impl/protocol/http/AbstractHttpCommandProcessor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ protected void logAccess(final HttpCommand command,
215215
protected DehydratedExecutionContext resolveContextForErrorHandling(DehydratedExecutionContext ctx, HttpCommand command) {
216216
if (ctx != null) return ctx;
217217
try {
218-
return contextResolution.resolveExecutionContext(protocol, command.getRequest(), null);
218+
return contextResolution.resolveExecutionContext(protocol, command, null);
219219
} catch (RuntimeException e) {
220220
// Well that failed too... nothing to do but return null
221221
LOGGER.debug("Failed to resolve error execution context", e);

0 commit comments

Comments
 (0)