Skip to content
This repository has been archived by the owner on Aug 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #362 from beabee-communityrm/chore/log-validation-…
Browse files Browse the repository at this point in the history
…errors

chore: remove internal server error for initial rollout
  • Loading branch information
wpf500 authored Feb 16, 2024
2 parents 299f3f6 + ef30c36 commit 3922d7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/api/interceptors/ValidateResponseInterceptor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ export class ValidateResponseInterceptor implements InterceptorInterface {
});
if (errors.length > 0) {
log.error("Validation failed on response", { errors });
throw new InternalServerError("Validation failed");
// TODO: Just log error for now
// throw new InternalServerError("Validation failed");
}
}

Expand Down

0 comments on commit 3922d7c

Please sign in to comment.