Test fix
This commit is contained in:
parent
bff951338c
commit
ddb8e385bf
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue