Merge pull request #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 <github@remi.nl>
This commit is contained in:
Remi Bergsma 2015-10-30 16:59:34 +01:00
commit beaed0e9b3

View File

@ -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