sureshanaparti commented on a change in pull request #4708:
URL: https://github.com/apache/cloudstack/pull/4708#discussion_r709886226
##########
File path:
engine/orchestration/src/main/java/com/cloud/agent/manager/AgentManagerImpl.java
##########
@@ -203,6 +218,14 @@
protected final ConfigKey<Boolean> CheckTxnBeforeSending = new
ConfigKey<Boolean>("Developer", Boolean.class,
"check.txn.before.sending.agent.commands", "false",
"This parameter allows developers to enable a check to see if a
transaction wraps commands that are sent to the resource. This is not to be
enabled on production systems.", true);
+ protected final ConfigKey<Boolean> InvestigateDisconnectedHosts = new
ConfigKey<>("Advanced", Boolean.class, "investigate.disconnected.hosts",
+ "false", "Determines whether to investigate VMs on disconnected
hosts", false);
+ protected final ConfigKey<Integer> InvestigateDisconnectedHostsInterval =
new ConfigKey<>("Advanced", Integer.class,
"investigate.disconnected.hosts.interval",
+ "300", "The time (in seconds) between VM investigation on disconnected
hosts.", false);
+ protected final ConfigKey<Integer> InvestigateDisconnectedHostsPoolSize =
new ConfigKey<Integer>("Advanced", Integer.class,
"investigate.disconnected.hosts.pool.size", "10",
+ "Default pool size to investigate disconnected hosts", false);
Review comment:
```suggestion
"The thread pool size to investigate disconnected hosts", false);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]