From facd9f856f005d88dceeeb3aa3a21305b62331ca Mon Sep 17 00:00:00 2001 From: rcooke-warwick Date: Mon, 10 Jul 2023 12:29:58 +0100 Subject: [PATCH] fix ssh with uuid Change-type: patch Signed-off-by: Ryan Cooke --- core/lib/common/worker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/lib/common/worker.js b/core/lib/common/worker.js index 2de8cea65..9cbf665cc 100644 --- a/core/lib/common/worker.js +++ b/core/lib/common/worker.js @@ -331,8 +331,8 @@ module.exports = class Worker { }; } else { config = { - host: this.sshConfig.host, - port: this.sshConfig.port, + host: this.workerHost, + port: this.workerPort, username: this.username, }; command = `host ${target} ${command}`;