Skip to content

Commit f3cbe85

Browse files
committed
fixup
1 parent 9fec1a6 commit f3cbe85

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

engine/orchestration/src/main/java/com/cloud/agent/manager/AgentManagerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1198,7 +1198,7 @@ public SimulateStartTask(final long id, String uuid, String name, final ServerRe
11981198
@Override
11991199
protected void runInContext() {
12001200
try {
1201-
logger.debug("Simulating start for resource {} (id: {}, uuid: {}, name; {})", resource.getName(), id, uuid, name);
1201+
logger.debug("Simulating start for resource {} (id: {}, uuid: {}, name {})", resource.getName(), id, uuid, name);
12021202

12031203
if (tapLoadingAgents(id, TapAgentsAction.Add)) {
12041204
try {

server/src/main/java/com/cloud/storage/StorageManagerImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3197,8 +3197,8 @@ protected boolean checkPoolforSpace(StoragePool pool, long allocatedSizeWithTemp
31973197

31983198
if (usedPercentage > storageAllocatedThreshold) {
31993199
if (logger.isDebugEnabled()) {
3200-
logger.debug("Insufficient un-allocated capacity on: {} for storage allocation since its allocated percentage: {}" +
3201-
+ " has crossed the allocated pool.storage.allocated.capacity.disablethreshold: {}", pool, usedPercentage, storageAllocatedThreshold);
3200+
logger.debug("Insufficient un-allocated capacity on: {} for storage allocation since its allocated percentage: {}" +
3201+
" has crossed the allocated pool.storage.allocated.capacity.disablethreshold: {}", pool, usedPercentage, storageAllocatedThreshold);
32023202
}
32033203
if (!forVolumeResize) {
32043204
return false;

0 commit comments

Comments
 (0)