bug 12709: extend cluster keep-alive timeout to 2.5 minutes to make it resistance to temporary management server hiccups

This commit is contained in:
Kelven Yang 2012-01-05 14:04:16 -08:00
parent 6ecb0f2b6b
commit 59290c8979
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ import com.cloud.utils.component.Manager;
public interface ClusterManager extends Manager {
public static final int DEFAULT_HEARTBEAT_INTERVAL = 1500;
public static final int DEFAULT_HEARTBEAT_THRESHOLD = 60000;
public static final int DEFAULT_HEARTBEAT_THRESHOLD = 150000;
public static final String ALERT_SUBJECT = "cluster-alert";
public Answer[] execute(String strPeer, long agentId, Command [] cmds, boolean stopOnError);