This commit is contained in:
James Agnew 2019-07-24 13:24:48 -04:00
parent bff951338c
commit ddb8e385bf
2 changed files with 2 additions and 1 deletions

View File

@ -49,6 +49,7 @@ public abstract class BaseServerResponseException extends RuntimeException {
private static final long serialVersionUID = 1L;
static {
registerExceptionType(PayloadTooLargeException.STATUS_CODE, PayloadTooLargeException.class);
registerExceptionType(AuthenticationException.STATUS_CODE, AuthenticationException.class);
registerExceptionType(InternalErrorException.STATUS_CODE, InternalErrorException.class);
registerExceptionType(InvalidRequestException.STATUS_CODE, InvalidRequestException.class);

View File

@ -172,7 +172,7 @@ public class BinaryAccessProvider {
}
long size = theServletRequest.getContentLength();
ourLog.info("**** HAVE CONTENT LENGTH: {}", size);
ourLog.trace("Request specified content length: {}", size);
String blobId = null;