diff --git a/packages/core/src/WorkflowExecute.ts b/packages/core/src/WorkflowExecute.ts index e57ff1311956e..c47208dcc53e5 100644 --- a/packages/core/src/WorkflowExecute.ts +++ b/packages/core/src/WorkflowExecute.ts @@ -1348,15 +1348,15 @@ export class WorkflowExecute { } } - const executionId: string = - this.additionalData.executionId ?? 'unknown_execution' + Date.now().toString(); - await this.storeFullDataInElasticSearch(executionId, workflow.id || '', fullRunData); // Store in Elastic - await this.storeFullDataInS3( - workflow.id, - executionId, - fullRunData.data.resultData.error, - fullRunData, - ); + // const executionId: string = + // this.additionalData.executionId ?? 'unknown_execution' + Date.now().toString(); + // // await this.storeFullDataInElasticSearch(executionId, workflow.id || '', fullRunData); // Store in Elastic + // // await this.storeFullDataInS3( + // // workflow.id, + // // executionId, + // // fullRunData.data.resultData.error, + // // fullRunData, + // // ); return fullRunData; }