From 6f5c69a4c81680e212eb90d4b843dc9b3b674198 Mon Sep 17 00:00:00 2001 From: Khushboo Vashi Date: Fri, 5 Dec 2025 14:40:47 +0530 Subject: [PATCH] Specify the correct hostname placeholder for the Password Exec command. --- docs/en_US/release_notes_9_11.rst | 1 + .../browser/server_groups/servers/static/js/server.ui.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/en_US/release_notes_9_11.rst b/docs/en_US/release_notes_9_11.rst index 77a0fb2d8..4a727c65a 100644 --- a/docs/en_US/release_notes_9_11.rst +++ b/docs/en_US/release_notes_9_11.rst @@ -39,4 +39,5 @@ Bug fixes | `Issue #9354 `_ - Fixed an issue where connection is failing via Query Tool/PSQL Tool workspaces. | `Issue #9372 `_ - Fixed an issue where copying highlighted text in the query tool data output cell editor would copy the complete string. | `Issue #9373 `_ - Fixed an issue where copying a single cell should not add quoting. + | `Issue #9399 `_ - Specify the correct hostname placeholder for the Password Exec command. | `Issue #9408 `_ - Ensure the proper handling of extra volume mount configurations in the Helm deployment template by correcting the configuration value references. diff --git a/web/pgadmin/browser/server_groups/servers/static/js/server.ui.js b/web/pgadmin/browser/server_groups/servers/static/js/server.ui.js index 0744c92bb..25244570f 100644 --- a/web/pgadmin/browser/server_groups/servers/static/js/server.ui.js +++ b/web/pgadmin/browser/server_groups/servers/static/js/server.ui.js @@ -569,7 +569,7 @@ export default class ServerSchema extends BaseUISchema { group: gettext('Advanced'), controlProps: {maxLength: null}, mode: ['properties', 'edit', 'create'], disabled: pgAdmin.server_mode == 'True' && pgAdmin.enable_server_passexec_cmd == 'False', - helpMessage: gettext('The server hostname, port, and username can be passed as variables by using the placeholders %HOST%, %PORT%, and %USERNAME%, which will be replaced with the corresponding server connection information.') + helpMessage: gettext('The server hostname, port, and username can be passed as variables by using the placeholders %HOSTNAME%, %PORT%, and %USERNAME%, which will be replaced with the corresponding server connection information.') }, { id: 'passexec_expiration', label: gettext('Password exec expiration (seconds)'), type: 'int',