Change from 127.0.0.1 to localhost for SSH tunnel

This commit is contained in:
ProjectInfinity
2024-05-17 13:06:48 +02:00
parent faf94c1a24
commit 4417edf73b

View File

@@ -52,7 +52,7 @@ async function connectUtility(driver, storedConnection, connectionMode, addition
throw new Error(tunnel.message);
}
connection.server = '127.0.0.1';
connection.server = 'localhost';
connection.port = tunnel.localPort;
}