mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 04:47:29 -08:00
fix: Use 127.0.0.1 as n8n uri for task runner process (no-changelog) (#11072)
This commit is contained in:
parent
59c5ff6135
commit
12e54a5eea
|
@ -44,7 +44,7 @@ export class TaskRunnerProcess {
|
|||
env: {
|
||||
PATH: process.env.PATH,
|
||||
N8N_RUNNERS_GRANT_TOKEN: grantToken,
|
||||
N8N_RUNNERS_N8N_URI: `localhost:${this.globalConfig.taskRunners.port}`,
|
||||
N8N_RUNNERS_N8N_URI: `127.0.0.1:${this.globalConfig.taskRunners.port}`,
|
||||
},
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue