We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3857c8 commit ba6c140Copy full SHA for ba6c140
vmware-base/src/main/java/com/cloud/hypervisor/vmware/mo/HostMO.java
@@ -321,8 +321,8 @@ public AboutInfo getHostAboutInfo() throws Exception {
321
public VmwareHostType getHostType() throws Exception {
322
AboutInfo aboutInfo = getHostAboutInfo();
323
if (aboutInfo == null) {
324
- String msg = "no type info about host known, assuming ESXi"
325
- s_logger.warn(msg)
+ String msg = "no type info about host known, assuming ESXi”;
+ s_logger.warn(msg);
326
return VmwareHostType.ESXi;
327
}
328
if ("VMware ESXi".equals(aboutInfo.getName()))
0 commit comments