mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
⚡ Add execution ID to queue processes for clarification (#2168)
* Add execution ID to queue processes for clarification
* ⚡ Display correct execution ID
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
parent
d17ab8e9e5
commit
1db0097ae3
|
@ -357,7 +357,7 @@ export class WorkflowRunner {
|
||||||
try {
|
try {
|
||||||
job = await this.jobQueue.add(jobData, jobOptions);
|
job = await this.jobQueue.add(jobData, jobOptions);
|
||||||
|
|
||||||
console.log(`Started with ID: ${job.id.toString()}`);
|
console.log(`Started with job ID: ${job.id.toString()} (Execution ID: ${executionId})`);
|
||||||
|
|
||||||
hooks = WorkflowExecuteAdditionalData.getWorkflowHooksWorkerMain(
|
hooks = WorkflowExecuteAdditionalData.getWorkflowHooksWorkerMain(
|
||||||
data.executionMode,
|
data.executionMode,
|
||||||
|
|
Loading…
Reference in a new issue