mirror of https://github.com/apache/cloudstack.git
another typo that appears when monitoring the java process via JMX
This commit is contained in:
parent
99059e2212
commit
d96bd05e64
|
|
@ -62,16 +62,16 @@ public class AsyncJobMBeanImpl extends StandardMBean implements AsyncJobMBean {
|
|||
return "Completed";
|
||||
|
||||
case IN_PROGRESS:
|
||||
return "In preogress";
|
||||
return "In progress";
|
||||
|
||||
case FAILED:
|
||||
return "failed";
|
||||
return "Failed";
|
||||
|
||||
case CANCELLED:
|
||||
return "cancelled";
|
||||
return "Cancelled";
|
||||
}
|
||||
|
||||
return "Unknow";
|
||||
return "Unknown";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue