This commit is contained in:
slavkap 2026-03-09 14:14:25 +01:00 committed by GitHub
commit 730ddcc32e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -308,7 +308,7 @@ iscsi.session.cleanup.enabled=false
#vm.migrate.domain.retrieve.timeout=10
# This parameter specifies if the host must be rebooted when something goes wrong with the heartbeat.
#reboot.host.and.alert.management.on.heartbeat.timeout=true
#reboot.host.and.alert.management.on.heartbeat.timeout=false
# Enables manually setting CPU's topology on KVM's VM.
#enable.manually.setting.cpu.topology.on.kvm.vm=true

View File

@ -593,10 +593,10 @@ public class AgentProperties{
/**
* This parameter specifies if the host must be rebooted when something goes wrong with the heartbeat.<br>
* Data type: Boolean.<br>
* Default value: <code>true</code>
* Default value: <code>false</code>
*/
public static final Property<Boolean> REBOOT_HOST_AND_ALERT_MANAGEMENT_ON_HEARTBEAT_TIMEOUT
= new Property<>("reboot.host.and.alert.management.on.heartbeat.timeout", true);
= new Property<>("reboot.host.and.alert.management.on.heartbeat.timeout", false);
/**
* Enables manually setting CPU's topology on KVM's VM. <br>