This is an automated email from the ASF dual-hosted git repository.
dahn pushed a commit to branch reimplement3303on4.12
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/reimplement3303on4.12 by this
push:
new 4a93867 missing ;
4a93867 is described below
commit 4a9386726207bf6a374b1ee5bffad6e5c4129dbf
Author: dahn <[email protected]>
AuthorDate: Wed May 1 07:34:43 2019 +0200
missing ;
---
.../src/main/java/com/cloud/configuration/dao/ResourceCountDaoImpl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/engine/schema/src/main/java/com/cloud/configuration/dao/ResourceCountDaoImpl.java
b/engine/schema/src/main/java/com/cloud/configuration/dao/ResourceCountDaoImpl.java
index 9b6734d..edda682 100644
---
a/engine/schema/src/main/java/com/cloud/configuration/dao/ResourceCountDaoImpl.java
+++
b/engine/schema/src/main/java/com/cloud/configuration/dao/ResourceCountDaoImpl.java
@@ -266,7 +266,7 @@ public class ResourceCountDaoImpl extends
GenericDaoBase<ResourceCountVO, Long>
}
private long executeSqlCountComputingResourcesForAccount(long accountId,
String sqlCountComputingResourcesAllocatedToAccount) {
- TransactionLegacy tx = TransactionLegacy.currentTxn()
+ TransactionLegacy tx = TransactionLegacy.currentTxn();
try {
PreparedStatement pstmt =
tx.prepareAutoCloseStatement(sqlCountComputingResourcesAllocatedToAccount);
pstmt.setLong(1, accountId);