Skip to content

Commit

Permalink
Fixes #18330: Agent run frequency must not be configurable on policy …
Browse files Browse the repository at this point in the history
…servers
  • Loading branch information
ElaadF committed Dec 1, 2020
1 parent dafb468 commit 95124a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ class ShowNodeDetailsFromNode(
"#logsDetails *" #> Script(OnLoad(logDisplayer.asyncDisplay(node.id,None, "logsGrid"))) &
"#node_parameters -*" #> (if(node.id == Constants.ROOT_POLICY_SERVER_ID) NodeSeq.Empty else nodeStateEditForm(node).nodeStateConfiguration) &
"#node_parameters -*" #> agentPolicyModeEditForm.cfagentPolicyModeConfiguration(Some(node.id)) &
"#node_parameters -*" #> agentScheduleEditForm(node).cfagentScheduleConfiguration &
"#node_parameters -*" #> (if(node.isPolicyServer) NodeSeq.Empty else agentScheduleEditForm(node).cfagentScheduleConfiguration) &
"#node_parameters *+" #> complianceModeEditForm(node).complianceModeConfiguration &
"#node_tabs [id]" #> s"details_${id}"
).apply(serverDetailsTemplate)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
<span class="glyphicon glyphicon-info-sign"></span>
</div>
<div ng-if="globalRun === undefined">
<p>
This setting will not be applied to policy server.
</p>
<p>By default, the agent runs on all nodes every 5 minutes.</p>
<p>
This high frequency enables fast response times to apply changes and state
Expand Down

0 comments on commit 95124a7

Please sign in to comment.