fix: Disable errors obfuscation (no-changelog) (#10617)

This commit is contained in:
Michael Kret
2024-08-30 10:59:30 +03:00
committed by GitHub
parent 1e08f444c9
commit 9fa1a9aa99
320 changed files with 445 additions and 518 deletions

View File

@@ -173,7 +173,7 @@ export class SendGrid implements INodeType {
);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail(error)) {
if (this.continueOnFail()) {
const executionData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray({ error: error.message }),
{ itemData: { item: i } },
@@ -214,7 +214,7 @@ export class SendGrid implements INodeType {
);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail(error)) {
if (this.continueOnFail()) {
const executionData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray({ error: error.message }),
{ itemData: { item: i } },
@@ -306,7 +306,7 @@ export class SendGrid implements INodeType {
);
returnData.push(responseData as INodeExecutionData);
} catch (error) {
if (this.continueOnFail(error)) {
if (this.continueOnFail()) {
returnData.push({ json: { error: error.message } });
} else {
throw error;
@@ -335,7 +335,7 @@ export class SendGrid implements INodeType {
);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail(error)) {
if (this.continueOnFail()) {
const executionData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray({ error: error.message }),
{ itemData: { item: i } },
@@ -372,7 +372,7 @@ export class SendGrid implements INodeType {
);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail(error)) {
if (this.continueOnFail()) {
const executionData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray({ error: error.message }),
{ itemData: { item: i } },
@@ -403,7 +403,7 @@ export class SendGrid implements INodeType {
);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail(error)) {
if (this.continueOnFail()) {
const executionData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray({ error: error.message }),
{ itemData: { item: i } },
@@ -433,7 +433,7 @@ export class SendGrid implements INodeType {
);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail(error)) {
if (this.continueOnFail()) {
const executionData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray({ error: error.message }),
{ itemData: { item: i } },
@@ -464,7 +464,7 @@ export class SendGrid implements INodeType {
);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail(error)) {
if (this.continueOnFail()) {
const executionData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray({ error: error.message }),
{ itemData: { item: i } },
@@ -494,7 +494,7 @@ export class SendGrid implements INodeType {
);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail(error)) {
if (this.continueOnFail()) {
const executionData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray({ error: error.message }),
{ itemData: { item: i } },
@@ -642,7 +642,7 @@ export class SendGrid implements INodeType {
);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail(error)) {
if (this.continueOnFail()) {
const executionData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray({ error: error.message }),
{ itemData: { item: i } },