Merge -r 1355592:1355593 from trunk to branch. FIXES: HDFS-3580
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1355595 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
535fd7de15
commit
b51d32719d
|
@ -404,7 +404,7 @@ public class HttpFSServer {
|
|||
String doAs = params.get(DoAsParam.NAME, DoAsParam.class);
|
||||
switch (op.value()) {
|
||||
case APPEND: {
|
||||
boolean hasData = params.get(DataParam.NAME, DataParam.class);
|
||||
Boolean hasData = params.get(DataParam.NAME, DataParam.class);
|
||||
if (!hasData) {
|
||||
response = Response.temporaryRedirect(
|
||||
createUploadRedirectionURL(uriInfo,
|
||||
|
@ -478,7 +478,7 @@ public class HttpFSServer {
|
|||
String doAs = params.get(DoAsParam.NAME, DoAsParam.class);
|
||||
switch (op.value()) {
|
||||
case CREATE: {
|
||||
boolean hasData = params.get(DataParam.NAME, DataParam.class);
|
||||
Boolean hasData = params.get(DataParam.NAME, DataParam.class);
|
||||
if (!hasData) {
|
||||
response = Response.temporaryRedirect(
|
||||
createUploadRedirectionURL(uriInfo,
|
||||
|
@ -486,11 +486,11 @@ public class HttpFSServer {
|
|||
} else {
|
||||
Short permission = params.get(PermissionParam.NAME,
|
||||
PermissionParam.class);
|
||||
boolean override = params.get(OverwriteParam.NAME,
|
||||
Boolean override = params.get(OverwriteParam.NAME,
|
||||
OverwriteParam.class);
|
||||
short replication = params.get(ReplicationParam.NAME,
|
||||
Short replication = params.get(ReplicationParam.NAME,
|
||||
ReplicationParam.class);
|
||||
long blockSize = params.get(BlockSizeParam.NAME,
|
||||
Long blockSize = params.get(BlockSizeParam.NAME,
|
||||
BlockSizeParam.class);
|
||||
FSOperations.FSCreate command =
|
||||
new FSOperations.FSCreate(is, path, permission, override,
|
||||
|
@ -543,7 +543,7 @@ public class HttpFSServer {
|
|||
break;
|
||||
}
|
||||
case SETREPLICATION: {
|
||||
short replication = params.get(ReplicationParam.NAME,
|
||||
Short replication = params.get(ReplicationParam.NAME,
|
||||
ReplicationParam.class);
|
||||
FSOperations.FSSetReplication command =
|
||||
new FSOperations.FSSetReplication(path, replication);
|
||||
|
@ -553,9 +553,9 @@ public class HttpFSServer {
|
|||
break;
|
||||
}
|
||||
case SETTIMES: {
|
||||
long modifiedTime = params.get(ModifiedTimeParam.NAME,
|
||||
Long modifiedTime = params.get(ModifiedTimeParam.NAME,
|
||||
ModifiedTimeParam.class);
|
||||
long accessTime = params.get(AccessTimeParam.NAME,
|
||||
Long accessTime = params.get(AccessTimeParam.NAME,
|
||||
AccessTimeParam.class);
|
||||
FSOperations.FSSetTimes command =
|
||||
new FSOperations.FSSetTimes(path, modifiedTime, accessTime);
|
||||
|
|
|
@ -261,6 +261,10 @@ Release 2.0.1-alpha - UNRELEASED
|
|||
|
||||
HDFS-3491. HttpFs does not set permissions correctly (tucu)
|
||||
|
||||
HDFS-3580. incompatible types; no instance(s) of type variable(s) V exist
|
||||
so that V conforms to boolean compiling HttpFSServer.java with OpenJDK
|
||||
(adi2 via tucu)
|
||||
|
||||
Release 2.0.0-alpha - 05-23-2012
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
Loading…
Reference in New Issue