Commit ad2f9200 authored by Guus der Kinderen's avatar Guus der Kinderen Committed by Christian Schudt

OF-1089: Send IQ result only after messages

IQ result should be the last stanza. This way, clients know that the
last archived message has arrived.
parent 12a26741
......@@ -44,6 +44,11 @@
Monitoring Plugin Changelog
</h1>
<p><b>1.5.2</b> -- Feb 15, 2016</p>
<ul>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1089'>OF-1089</a>] - Send IQ result only after messages.</li>
</ul>
<p><b>1.5.1</b> -- Feb 15, 2016</p>
<ul>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-1087'>OF-1087</a>] - Fixed namespace handling (BOSH).</li>
......
......@@ -5,7 +5,7 @@
<name>Monitoring Service</name>
<description>Monitors conversations and statistics of the server.</description>
<author>Jive Software</author>
<version>1.5.1</version>
<version>1.5.2</version>
<date>2/15/2016</date>
<minServerVersion>4.0.0</minServerVersion>
<databaseKey>monitoring</databaseKey>
......
......@@ -76,8 +76,6 @@ public class IQQueryHandler extends AbstractIQHandler implements
}
}
sendAcknowledgementResult(packet, session);
final QueryRequest queryRequest = new QueryRequest(packet.getChildElement(), archiveJid);
Collection<ArchivedMessage> archivedMessages = retrieveMessages(queryRequest);
......@@ -87,6 +85,8 @@ public class IQQueryHandler extends AbstractIQHandler implements
sendFinalMessage(session, queryRequest);
sendAcknowledgementResult(packet, session);
return null;
}
......
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