mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 00:24:07 -08:00
add metadata to output data
This commit is contained in:
parent
34f2cc557b
commit
9f5669396f
|
@ -4161,6 +4161,7 @@ export function getSupplyDataFunctions(
|
|||
connectionType: NodeConnectionType,
|
||||
currentNodeRunIndex: number,
|
||||
data: INodeExecutionData[][],
|
||||
metadata?: ITaskMetadata,
|
||||
): void {
|
||||
addExecutionDataFunctions(
|
||||
'output',
|
||||
|
@ -4172,6 +4173,7 @@ export function getSupplyDataFunctions(
|
|||
node.name,
|
||||
runIndex,
|
||||
currentNodeRunIndex,
|
||||
metadata,
|
||||
).catch((error) => {
|
||||
Logger.warn(
|
||||
`There was a problem logging output data of node "${this.getNode().name}": ${
|
||||
|
|
Loading…
Reference in a new issue