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