From b2fbd31b2962f595f134e46ed22b9f8e32a1434a Mon Sep 17 00:00:00 2001 From: "ugo.bechameil" Date: Fri, 28 Mar 2025 10:38:50 +0100 Subject: [PATCH] use enclosed ipv6 addresses --- shared/mongoDbClient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/mongoDbClient.js b/shared/mongoDbClient.js index 6028592..b6d1350 100644 --- a/shared/mongoDbClient.js +++ b/shared/mongoDbClient.js @@ -23,7 +23,7 @@ const getSshConnectionSettings = async ({ connectionInfo, sshService }) => { const { options } = await sshService.openTunnel(sshConnectionConfig); return { ...connectionInfo, - host: options.host, + host: options.escapedHostForUrl, port: options.port.toString() || '22', }; };