|
@@ -45,9 +45,9 @@ public class AgentRequests {
|
|
|
|
|
|
public void setExecutionDetailsRequest(String host, String component, String requestExecutionCmd) {
|
|
|
if (StringUtils.isNotBlank(requestExecutionCmd)) {
|
|
|
- LOG.debug("Setting need for exec command to " + requestExecutionCmd + " for " + component);
|
|
|
Map<String, Boolean> perHostRequiresExecCmdDetails = getPerHostRequiresExecCmdDetails(host);
|
|
|
if (Boolean.TRUE.toString().toUpperCase().equals(requestExecutionCmd.toUpperCase())) {
|
|
|
+ LOG.info("Setting need for exec command to " + requestExecutionCmd + " for " + component);
|
|
|
perHostRequiresExecCmdDetails.put(component, Boolean.TRUE);
|
|
|
} else {
|
|
|
perHostRequiresExecCmdDetails.put(component, Boolean.FALSE);
|