Commit 35e84d51 authored by David Smith's avatar David Smith Committed by david

More minor tweaks. Trying to get the size of my local diff down so I can review it more easily

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9093 b35dd754-fafc-0310-a699-88a17e54d16e
parent 4af67cf9
...@@ -234,8 +234,7 @@ public class HttpBindServlet extends HttpServlet { ...@@ -234,8 +234,7 @@ public class HttpBindServlet extends HttpServlet {
respond(response, createEmptyBody(), request.getMethod()); respond(response, createEmptyBody(), request.getMethod());
} }
else { else {
connection connection.setContinuation(ContinuationSupport.getContinuation(request, connection));
.setContinuation(ContinuationSupport.getContinuation(request, connection));
request.setAttribute("request-session", connection.getSession()); request.setAttribute("request-session", connection.getSession());
request.setAttribute("request", connection.getRequestId()); request.setAttribute("request", connection.getRequestId());
try { try {
......
...@@ -183,7 +183,7 @@ public class HttpConnection { ...@@ -183,7 +183,7 @@ public class HttpConnection {
return deliverable; return deliverable;
} }
this.isDelivered = true; this.isDelivered = true;
throw new HttpBindTimeoutException("Request " + requestId + " exceded response time from " + throw new HttpBindTimeoutException("Request " + requestId + " exceeded response time from " +
"server of " + session.getWait() + " seconds."); "server of " + session.getWait() + " seconds.");
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment