File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
comp/core/status/statusimpl Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,7 @@ func populateConfig(config config.Component) map[string]string {
111
111
conf ["additional_checksd" ] = config .GetString ("additional_checksd" )
112
112
113
113
isFipsAgent , _ := fips .Enabled ()
114
- isFIPS := config .GetBool ("fips.enabled" ) || isFipsAgent
115
- conf ["fips_proxy_enabled" ] = strconv .FormatBool (isFIPS )
114
+ conf ["fips_proxy_enabled" ] = strconv .FormatBool (config .GetBool ("fips.enabled" ) && ! isFipsAgent )
116
115
conf ["fips_local_address" ] = config .GetString ("fips.local_address" )
117
116
conf ["fips_port_range_start" ] = config .GetString ("fips.port_range_start" )
118
117
Original file line number Diff line number Diff line change
1
+ # Each section from every release note are combined when the
2
+ # CHANGELOG.rst is rendered. So the text needs to be worded so that
3
+ # it does not depend on any information only available in another
4
+ # section. This may mean repeating some details, but each section
5
+ # must be readable independently of the other.
6
+ #
7
+ # Each section note must be formatted as reStructuredText.
8
+ ---
9
+ fixes :
10
+ - |
11
+ Remove the FIPS Proxy status section from the Agent status page when running the FIPS Agent.
You can’t perform that action at this time.
0 commit comments