fix: Use 127.0.0.1 as n8n uri for task runner process (no-changelog) (#11072)

This commit is contained in:
Tomi Turtiainen 2024-10-03 09:38:03 +03:00 committed by GitHub
parent 59c5ff6135
commit 12e54a5eea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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}`,
},
});