Fix a few typos in ConfigurationManager.

Signed-off-by: Prasanna Santhanam <tsp@apache.org>
This commit is contained in:
Thomas O'Dowd 2013-07-26 17:34:15 +09:00 committed by Prasanna Santhanam
parent 2388157596
commit c78ed39b2f
1 changed files with 4 additions and 4 deletions

View File

@ -725,7 +725,7 @@ public class ConfigurationManagerImpl extends ManagerBase implements Configurati
if (type.equals(Boolean.class)) {
if (!(value.equals("true") || value.equals("false"))) {
s_logger.error("Configuration variable " + name + " is expecting true or false in stead of " + value);
s_logger.error("Configuration variable " + name + " is expecting true or false instead of " + value);
return "Please enter either 'true' or 'false'.";
}
return null;
@ -782,17 +782,17 @@ public class ConfigurationManagerImpl extends ManagerBase implements Configurati
} else if (range.equals("hypervisorList")) {
String[] hypervisors = value.split(",");
if (hypervisors == null) {
return "Please enter hypervisor list, seperated by comma";
return "Please enter hypervisor list, separated by comma";
}
for (String hypervisor : hypervisors) {
if (HypervisorType.getType(hypervisor) == HypervisorType.Any
|| HypervisorType.getType(hypervisor) == HypervisorType.None) {
return "Please enter valid hypervisor type";
return "Please enter a valid hypervisor type";
}
}
} else if (range.equalsIgnoreCase("instanceName")) {
if (!NetUtils.verifyInstanceName(value)) {
return "Instance name can not contain hyphen, spaces and plus sign";
return "Instance name can not contain hyphen, space or plus sign";
}
} else if (range.equals("routes")) {
String[] routes = value.split(",");