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

@@ -264,7 +264,7 @@ export function configureQueryRunner(
} catch (err) {
const error = parseMySqlError.call(this, err, 0, formatedQueries);
if (!this.continueOnFail(err)) throw error;
if (!this.continueOnFail()) throw error;
returnData.push({ json: { message: error.message, error: { ...error } } });
}
} else {
@@ -302,7 +302,7 @@ export function configureQueryRunner(
} catch (err) {
const error = parseMySqlError.call(this, err, index, [formatedQuery]);
if (!this.continueOnFail(err)) {
if (!this.continueOnFail()) {
connection.release();
throw error;
}
@@ -352,7 +352,7 @@ export function configureQueryRunner(
connection.release();
}
if (!this.continueOnFail(err)) throw error;
if (!this.continueOnFail()) throw error;
returnData.push(prepareErrorItem(queries[index], error as Error, index));
// Return here because we already rolled back the transaction