Skip to content

Commit b1bccd4

Browse files
committed
fix compile error
1 parent 9779f63 commit b1bccd4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

bvm/ballerina-runtime/src/main/java/io/ballerina/runtime/transactions/TransactionResourceManager.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,8 @@ public boolean notifyCommit(String transactionId, String transactionBlockId) {
375375
try {
376376
ctx.close();
377377
} catch (Exception e) {
378-
log.error("error when committing and releasing resources for transaction " + transactionId + ":" + e.getMessage(), e);
378+
log.error("error when committing and releasing resources for transaction " + transactionId +
379+
":" + e.getMessage(), e);
379380
commitSuccess = false;
380381
}
381382
}
@@ -437,7 +438,8 @@ public boolean notifyAbort(String transactionId, String transactionBlockId) {
437438
try {
438439
ctx.close();
439440
} catch (Exception e) {
440-
log.error("error when aborting and releasing resources for transaction " + transactionId + ":" + e.getMessage(), e);
441+
log.error("error when aborting and releasing resources for transaction " + transactionId +
442+
":" + e.getMessage(), e);
441443
abortSuccess = false;
442444
}
443445
}

0 commit comments

Comments
 (0)