You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: server/src/com/cloud/configuration/Config.java
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1099,13 +1099,21 @@ public enum Config {
1099
1099
null),
1100
1100
XenServerSetupMultipath("Advanced", ManagementServer.class, String.class, "xenserver.setup.multipath", "false", "Setup the host to do multipath", null),
1101
1101
XenServerBondStorageNic("Advanced", ManagementServer.class, String.class, "xenserver.bond.storage.nics", null, "Attempt to bond the two networks if found", null),
1102
+
XenServerHeartBeatTimeout(
1103
+
"Advanced",
1104
+
ManagementServer.class,
1105
+
Integer.class,
1106
+
"xenserver.heartbeat.timeout",
1107
+
"120",
1108
+
"heartbeat timeout to use when implementing XenServer Self Fencing",
1109
+
null),
1102
1110
XenServerHeartBeatInterval(
1103
1111
"Advanced",
1104
1112
ManagementServer.class,
1105
1113
Integer.class,
1106
1114
"xenserver.heartbeat.interval",
1107
1115
"60",
1108
-
"heartbeat to use when implementing XenServer Self Fencing",
1116
+
"heartbeat interval to use when checking before XenServer Self Fencing",
1109
1117
null),
1110
1118
XenServerGuestNetwork("Hidden", ManagementServer.class, String.class, "xenserver.guest.network.device", null, "Specify for guest network name label", null),
1111
1119
XenServerMaxNics("Advanced", AgentManager.class, Integer.class, "xenserver.nics.max", "7", "Maximum allowed nics for Vms created on XenServer", null),
0 commit comments