HDDS-705. addendum patch to fix find bug issue. Contributed by Bharat Viswanadham.
This commit is contained in:
parent
82919a1e7a
commit
f6498af0d7
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue