Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
mcweba committed May 2, 2024
1 parent 24ce906 commit d13969a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ private void makeStorageExpandRequest(final String targetUri, final List subReso
}
cRes.bodyHandler(data -> {
String fullResponseBody = data.toString();
if(StatusCode.PAYLOAD_TOO_LARGE.getStatusCode() == cRes.statusCode()) {
if (StatusCode.PAYLOAD_TOO_LARGE.getStatusCode() == cRes.statusCode()) {
log.info("{}: {}: {}", PAYLOAD_TOO_LARGE, targetUri, fullResponseBody);
handler.handle(new ResourceNode(SERIOUS_EXCEPTION, new ResourceCollectionException(fullResponseBody, PAYLOAD_TOO_LARGE)));
} else if (StatusCode.INTERNAL_SERVER_ERROR.getStatusCode() == cRes.statusCode()) {
Expand Down

0 comments on commit d13969a

Please sign in to comment.