From 46f05056deb3f89836c6a6afc5c24a8adfb4dedc Mon Sep 17 00:00:00 2001 From: Kjell Winblad Date: Mon, 15 May 2023 16:29:52 +0200 Subject: [PATCH 1/2] docs: clarify description of bridge username and password Fixes: https://emqx.atlassian.net/browse/EMQX-9613 --- rel/i18n/emqx_connector_schema_lib.hocon | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rel/i18n/emqx_connector_schema_lib.hocon b/rel/i18n/emqx_connector_schema_lib.hocon index 0e8a2e9a3b..2f923c81b8 100644 --- a/rel/i18n/emqx_connector_schema_lib.hocon +++ b/rel/i18n/emqx_connector_schema_lib.hocon @@ -13,7 +13,7 @@ database_desc.label: """Database Name""" password.desc: -"""EMQX's password in the external database.""" +"""The password associated with the bridge, used for authentication with the external database.""" password.label: """Password""" @@ -37,7 +37,7 @@ ssl.label: """Enable SSL""" username.desc: -"""EMQX's username in the external database.""" +"""The username associated with the bridge in the external database used for authentication or identification purposes.""" username.label: """Username""" From b1a4f6ea05c0e95e1a2b84ce7affdb9601e982fe Mon Sep 17 00:00:00 2001 From: Kjell Winblad Date: Mon, 15 May 2023 16:37:54 +0200 Subject: [PATCH 2/2] docs: add changelog entry --- changes/ce/fix-10708.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/ce/fix-10708.md diff --git a/changes/ce/fix-10708.md b/changes/ce/fix-10708.md new file mode 100644 index 0000000000..617bda24ff --- /dev/null +++ b/changes/ce/fix-10708.md @@ -0,0 +1 @@ +Enhanced clarity of the descriptions for the bridge configuration fields (username and password) to better guide users during setup.