Skip to content

Commit

Permalink
Merge branch 'develop' into release/4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oxypomme committed Aug 2, 2024
2 parents e751a5f + 36e11a2 commit b71161a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion api/lib/services/processors/harvest/steps/validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ module.exports = async function process(params) {
}
if (Array.isArray(errors)) {
// @ts-ignore
errors.slice(0, 10).forEach((e) => logs.add('error', e));
errors.slice(0, 10).forEach((e) => {
logs.add('error', `${e.message} at ${e.instancePath}`);
});
timeout.reset();
}

Expand Down

0 comments on commit b71161a

Please sign in to comment.