Skip to content

Commit

Permalink
Fixed Deploy Agent wrong use of connection secure property (#5285)
Browse files Browse the repository at this point in the history
* Changed wrong use connection secure property

* Updated CHANGELOG

(cherry picked from commit 7140b80)
  • Loading branch information
Machi3mfl committed Mar 13, 2023
1 parent bb319f8 commit 0f962e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ All notable changes to the Wazuh app project will be documented in this file.
- Fixed Statistic cronjob bulk document insert [#5150](https://github.com/wazuh/wazuh-kibana-app/pull/5150)
- Fixed the style of the buttons showing more event information in the event view table. [#5137](https://github.com/wazuh/wazuh-kibana-app/pull/5137)
- Fixed a UI crash due to `external_references` field could be missing in some vulnerability data [#5200](https://github.com/wazuh/wazuh-kibana-app/pull/5200)
- Fixed Wazuh main menu not displayed when navigation menu is locked [#5273](https://github.com/wazuh/wazuh-kibana-app/pull/5273)
- Fixed Deploy Agent wrong use of connection secure property [#5285](https://github.com/wazuh/wazuh-kibana-app/pull/5285)
- Fixed events view when search bar language is `lucene` [#5286](https://github.com/wazuh/wazuh-kibana-app/pull/5286)

### Removed

Expand Down
4 changes: 2 additions & 2 deletions public/controllers/agent/components/register-agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@ export const RegisterAgent = withErrorBoundary(
if (remoteConfig) {
this.setState({
haveUdpProtocol: remoteConfig.isUdp,
haveConnectionSecure: remoteConfig.isSecure,
haveConnectionSecure: remoteConfig.haveSecureConnection,
udpProtocol: remoteConfig.isUdp,
connectionSecure: remoteConfig.isSecure,
connectionSecure: remoteConfig.haveSecureConnection,
})
}
}
Expand Down

0 comments on commit 0f962e8

Please sign in to comment.