Github user bhaisaab commented on a diff in the pull request:
https://github.com/apache/cloudstack/pull/768#discussion_r41700060
--- Diff: usage/src/com/cloud/usage/UsageManagerImpl.java ---
@@ -373,6 +381,26 @@ protected void runInContextInternal() {
}
parse(job, startDate, endDate);
+ if (_runQuota){
+ try {
+ _quotaManager.calculateQuotaUsage();
+ }
+ catch (Exception e){
+ s_logger.fatal("Exception received while calculating
quota " + e.getMessage());
+ if (s_logger.isDebugEnabled()){
+ e.printStackTrace();
--- End diff --
Fixed to use logger.log('message', e) format which should log both the
human readable string and the error (with stack trace).
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---