Skip to content

Commit

Permalink
Fix warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
amanteaux committed Jan 15, 2025
1 parent bddc5b5 commit d224137
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ private void readAndCheck(final long read) {
} catch (IOException e) {
logger.error("Error while closing the input stream", e);
}
logger.warn("Client tried to send a request body that is too large while sending a content-length headers that fits the max allowed request body size");
logger.warn("Client tried to send a request body that is larger than the request content-length header value");
throw makeEntityTooLargeException();
}
}
Expand Down

0 comments on commit d224137

Please sign in to comment.