Skip to content

Commit

Permalink
[PRDP-269] Changed not found response
Browse files Browse the repository at this point in the history
  • Loading branch information
svariant committed Dec 5, 2023
1 parent e218ffa commit 796f0b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public HttpResponseMessage run (
.build();
} catch (ReceiptNotFoundException e) {
return request
.createResponseBuilder(HttpStatus.OK)
.createResponseBuilder(HttpStatus.NOT_FOUND)
.body(ProblemJson.builder()
.title(HttpStatus.NOT_FOUND.name())
.detail("No Receipt Error to process on bizEvent with id " + eventId)
Expand Down

0 comments on commit 796f0b9

Please sign in to comment.