mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 16:44: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,
|
connectionType: NodeConnectionType,
|
||||||
currentNodeRunIndex: number,
|
currentNodeRunIndex: number,
|
||||||
data: INodeExecutionData[][],
|
data: INodeExecutionData[][],
|
||||||
|
metadata?: ITaskMetadata,
|
||||||
): void {
|
): void {
|
||||||
addExecutionDataFunctions(
|
addExecutionDataFunctions(
|
||||||
'output',
|
'output',
|
||||||
|
@ -4172,6 +4173,7 @@ export function getSupplyDataFunctions(
|
||||||
node.name,
|
node.name,
|
||||||
runIndex,
|
runIndex,
|
||||||
currentNodeRunIndex,
|
currentNodeRunIndex,
|
||||||
|
metadata,
|
||||||
).catch((error) => {
|
).catch((error) => {
|
||||||
Logger.warn(
|
Logger.warn(
|
||||||
`There was a problem logging output data of node "${this.getNode().name}": ${
|
`There was a problem logging output data of node "${this.getNode().name}": ${
|
||||||
|
|
Loading…
Reference in a new issue