HDDS-705. addendum patch to fix find bug issue. Contributed by Bharat Viswanadham.

This commit is contained in:
Bharat Viswanadham 2018-10-22 10:17:12 -07:00
parent 82919a1e7a
commit f6498af0d7
2 changed files with 4 additions and 2 deletions

View File

@ -185,8 +185,10 @@ public class EndpointBase {
LOG.info("Auth header string {}", auth);
if (auth == null) {
// In this case, adding resource as Authorization, need to revisit in
// future if it needs to be changed.
throw S3ErrorTable
.newError(S3ErrorTable.MALFORMED_HEADER, auth);
.newError(S3ErrorTable.MALFORMED_HEADER, "Authorization");
}
String userName;

View File

@ -50,7 +50,7 @@ public final class S3ErrorTable {
"is invalid.", HTTP_NOT_FOUND);
public static final OS3Exception NO_SUCH_KEY = new OS3Exception(
"NoSuchObject", "The specified key does not exist", HTTP_NOT_FOUND);
"NoSuchKey", "The specified key does not exist", HTTP_NOT_FOUND);
/**
* Create a new instance of Error.