mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🐛 Fix bug in S3 Node #1278
This commit is contained in:
parent
50e16de270
commit
8da254fb48
|
@ -105,11 +105,11 @@ export class S3 implements INodeType {
|
||||||
const items = this.getInputData();
|
const items = this.getInputData();
|
||||||
const returnData: IDataObject[] = [];
|
const returnData: IDataObject[] = [];
|
||||||
const qs: IDataObject = {};
|
const qs: IDataObject = {};
|
||||||
const headers: IDataObject = {};
|
|
||||||
let responseData;
|
let responseData;
|
||||||
const resource = this.getNodeParameter('resource', 0) as string;
|
const resource = this.getNodeParameter('resource', 0) as string;
|
||||||
const operation = this.getNodeParameter('operation', 0) as string;
|
const operation = this.getNodeParameter('operation', 0) as string;
|
||||||
for (let i = 0; i < items.length; i++) {
|
for (let i = 0; i < items.length; i++) {
|
||||||
|
const headers: IDataObject = {};
|
||||||
if (resource === 'bucket') {
|
if (resource === 'bucket') {
|
||||||
//https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html
|
//https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucket.html
|
||||||
if (operation === 'create') {
|
if (operation === 'create') {
|
||||||
|
|
Loading…
Reference in a new issue