mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(S3 Node): Fix issue with get many buckets not outputting data (#5514)
This commit is contained in:
committed by
GitHub
parent
11b467137e
commit
1c476770a7
@@ -185,7 +185,11 @@ export class S3 implements INodeType {
|
|||||||
);
|
);
|
||||||
responseData = responseData.slice(0, qs.limit);
|
responseData = responseData.slice(0, qs.limit);
|
||||||
}
|
}
|
||||||
returnData.push.apply(returnData, responseData);
|
const executionData = this.helpers.constructExecutionMetaData(
|
||||||
|
this.helpers.returnJsonArray(responseData),
|
||||||
|
{ itemData: { item: i } },
|
||||||
|
);
|
||||||
|
returnData.push(...executionData);
|
||||||
}
|
}
|
||||||
|
|
||||||
//https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html
|
//https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectsV2.html
|
||||||
|
|||||||
Reference in New Issue
Block a user