Commit a4181ab1 authored by Alex Wenckus's avatar Alex Wenckus Committed by alex

Fixed request id check. JM-973

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@7088 b35dd754-fafc-0310-a699-88a17e54d16e
parent 23cc770c
...@@ -505,7 +505,7 @@ public class HttpSession extends ClientSession { ...@@ -505,7 +505,7 @@ public class HttpSession extends ClientSession {
boolean delivered = false; boolean delivered = false;
for (HttpConnection connection : connectionQueue) { for (HttpConnection connection : connectionQueue) {
try { try {
if (connection.getRequestId() == lastRequestID + 1) { if (connection.getRequestId() <= lastRequestID + 1) {
deliver(connection, deliverable); deliver(connection, deliverable);
delivered = true; delivered = true;
lastRequestID = connection.getRequestId(); lastRequestID = connection.getRequestId();
......
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