Skip to content

Commit 2648912

Browse files
committed
Fix CID-1222222
1 parent 50990c4 commit 2648912

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/hypervisors/xenserver/src/com/cloud/hypervisor/xenserver/discoverer/XcpServerDiscoverer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ public boolean configure(String name, Map<String, Object> params) throws Configu
477477
Boolean.parseBoolean(value);
478478

479479
value = _params.get("xenserver.check.hvm");
480-
_checkHvm = false;
480+
_checkHvm = Boolean.parseBoolean(value);
481481
_connPool = XenServerConnectionPool.getInstance();
482482

483483
_agentMgr.registerForHostEvents(this, true, false, true);

0 commit comments

Comments
 (0)