Commit 632b3018 authored by Dave Cridland's avatar Dave Cridland

Merge pull request #91 from akrherz/of812

OF-812 properly handle start attribute in list requests
parents ec477dd9 20f365b7
......@@ -44,6 +44,11 @@
Monitoring Plugin Changelog
</h1>
<p><b>1.4.3</b> -- Oct 27, 2014</p>
<ul>
<li>OF-812 properly handle the start attribute in list requests</li>
</ul>
<p><b>1.4.2</b> -- Apr 30, 2014</p>
<ul>
<li>ofConParticipant table name is case sensitive on linux+mysql</li>
......
......@@ -5,8 +5,8 @@
<name>Monitoring Service</name>
<description>Monitors conversations and statistics of the server.</description>
<author>Jive Software</author>
<version>1.4.2</version>
<date>04/30/2014</date>
<version>1.4.3</version>
<date>10/27/2014</date>
<minServerVersion>3.9.0</minServerVersion>
<databaseKey>monitoring</databaseKey>
<databaseVersion>2</databaseVersion>
......
......@@ -146,6 +146,8 @@ public class JdbcPersistenceManager implements PersistenceManager {
} else if (startDate.before(maxRetrievableDate)) {
result = maxRetrievableDate;
}
}else{
result = startDate;
}
return result;
}
......
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