Skip to content

Commit beaed0e

Browse files
committed
Merge pull request apache#913 from radu-stefanache/more_typo_fixes
another typo that appears when monitoring the java process via JMXStatus : in preogress instead of in progress and some other small typos . * pr/913: another typo that appears when monitoring the java process via JMX Signed-off-by: Remi Bergsma <[email protected]>
2 parents ab749ed + d96bd05 commit beaed0e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

framework/jobs/src/org/apache/cloudstack/framework/jobs/impl/AsyncJobMBeanImpl.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,16 @@ public String getStatus() {
6262
return "Completed";
6363

6464
case IN_PROGRESS:
65-
return "In preogress";
65+
return "In progress";
6666

6767
case FAILED:
68-
return "failed";
68+
return "Failed";
6969

7070
case CANCELLED:
71-
return "cancelled";
71+
return "Cancelled";
7272
}
7373

74-
return "Unknow";
74+
return "Unknown";
7575
}
7676

7777
@Override

0 commit comments

Comments
 (0)