[ https://issues.apache.org/jira/browse/CLOUDSTACK-9417?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15432034#comment-15432034 ]
ASF GitHub Bot commented on CLOUDSTACK-9417: -------------------------------------------- Github user jburwell commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1593#discussion_r75795653 --- Diff: usage/src/com/cloud/usage/UsageSanityChecker.java --- @@ -72,7 +72,9 @@ protected boolean checkItemCountByPstmt(CheckCase checkCase) throws SQLException try (PreparedStatement pstmt = conn.prepareStatement(checkCase.sqlTemplate)) { if(checkCase.checkId) { pstmt.setInt(1, lastId); - pstmt.setInt(2, maxId); + if (maxId > 0) { + pstmt.setInt(2, maxId); + } --- End diff -- @nvazquez I understand now. When ``maxId <= 0`` a different prepared statement will be used which has only one placeholder. A bit convoluted, but you are just working with the existing complexity. > Usage module refactoring > ------------------------ > > Key: CLOUDSTACK-9417 > URL: https://issues.apache.org/jira/browse/CLOUDSTACK-9417 > Project: CloudStack > Issue Type: Bug > Security Level: Public(Anyone can view this level - this is the > default.) > Components: Usage > Affects Versions: 4.9.0 > Reporter: Nicolas Vazquez > Assignee: Nicolas Vazquez > Fix For: 4.9.1 > > > h3. Introduction > Usage sanity check file was not been updated on sanity check. > It is proposed: > * New usage folder {{/var/cache/cloudstack/usage}}, creation on > cloudstack-usage package built. > * New sanity check file location in new folder {{/var/cache/cloudstack/usage}} > * Timestamp included in {{usage.log}} file > * Include {{updateMaxId()}} on sanity check as it wasn't being updated -- This message was sent by Atlassian JIRA (v6.3.4#6332)