Hi!
If this branch is executed it leaves worker.uuid empty
|
else if (match) { |
|
const ipAddress = match[1]; |
|
console.log(`Setting URL as IP address: ${ipAddress}`); |
|
this.workerUser = 'root'; |
|
this.workerPort = 22222; |
|
this.workerHost = ipAddress; |
But it is still used here, in a call to balena tunnel
|
let argsClient = [ |
|
`tunnel`, |
|
this.uuid, |
|
`-p`, |
|
`22222:${workerPort}` |
|
]; |
|
let tunnelProcClient = spawn(`balena`, argsClient, {stdio: 'inherit'}); |
This triggers an error message in the terminal but does not stop the execution.
Best regards,
Oleksandr Slovak
Hi!
If this branch is executed it leaves worker.uuid empty
leviathan/core/lib/common/worker.js
Lines 119 to 124 in 5984adc
But it is still used here, in a call to balena tunnel
leviathan/core/lib/common/worker.js
Lines 493 to 499 in 5984adc
This triggers an error message in the terminal but does not stop the execution.
Best regards,
Oleksandr Slovak