Skip to content

Commit

Permalink
Change log line
Browse files Browse the repository at this point in the history
  • Loading branch information
tomi committed Jan 22, 2025
1 parent 0ad39b3 commit 68479a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/task-runners/task-runner-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class TaskRunnerServer {
this.server.on('error', (error: Error & { code: string }) => {
if (error.code === 'EADDRINUSE') {
this.logger.info(
`n8n Task Runner's port ${port} is already in use. Do you have another instance of n8n running already?`,
`n8n Task Broker's port ${port} is already in use. Do you have another instance of n8n running already?`,
);
process.exit(1);
}
Expand All @@ -111,7 +111,7 @@ export class TaskRunnerServer {
this.server.listen(port, address, () => resolve());
});

this.logger.info(`n8n Task Runner server ready on ${address}, port ${port}`);
this.logger.info(`n8n Task Broker ready on ${address}, port ${port}`);
}

/** Creates WebSocket server for handling upgrade requests */
Expand Down

0 comments on commit 68479a3

Please sign in to comment.