Repository: hadoop Updated Branches: refs/heads/branch-2.7 27b786660 -> ab04c9ab5
HDFS-8615. Correct HTTP method in WebHDFS document. Contributed by Brahma Reddy Battula. (cherry picked from commit 1a169a26bcc4e4bab7697965906cb9ca7ef8329e) (cherry picked from commit 9f9315008e75765de4b905f7d57de9505fb5ca10) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/ab04c9ab Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/ab04c9ab Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/ab04c9ab Branch: refs/heads/branch-2.7 Commit: ab04c9ab5faf55043ecea37e84a71c83448a2c13 Parents: 27b7866 Author: Akira Ajisaka <[email protected]> Authored: Wed Jun 17 17:13:02 2015 -0700 Committer: Akira Ajisaka <[email protected]> Committed: Tue Nov 17 16:32:07 2015 +0900 ---------------------------------------------------------------------- hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 3 +++ .../hadoop-hdfs/src/site/markdown/WebHDFS.md | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/ab04c9ab/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index d52253d..bcb8a6e 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -1156,6 +1156,9 @@ Release 2.6.3 - UNRELEASED BUG FIXES + HDFS-8615. Correct HTTP method in WebHDFS document. + (Brahma Reddy Battula via aajisaka) + Release 2.6.2 - 2015-10-28 INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/ab04c9ab/hadoop-hdfs-project/hadoop-hdfs/src/site/markdown/WebHDFS.md ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/site/markdown/WebHDFS.md b/hadoop-hdfs-project/hadoop-hdfs/src/site/markdown/WebHDFS.md index 6432c57a..d2ce6d4 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/site/markdown/WebHDFS.md +++ b/hadoop-hdfs-project/hadoop-hdfs/src/site/markdown/WebHDFS.md @@ -692,7 +692,7 @@ See also: [FileSystem](../../api/org/apache/hadoop/fs/FileSystem.html).setAcl * Submit a HTTP GET request. - curl -i -X PUT "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=GETACLSTATUS" + curl -i "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=GETACLSTATUS" The client receives a response with a [`AclStatus` JSON object](#ACL_Status_JSON_Schema): @@ -719,7 +719,7 @@ See also: [FileSystem](../../api/org/apache/hadoop/fs/FileSystem.html).getAclSta * Submit a HTTP GET request. - curl -i -X PUT "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=CHECKACCESS + curl -i "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=CHECKACCESS &fsaction=<FSACTION> The client receives a response with zero content length: @@ -765,7 +765,7 @@ See also: [FileSystem](../../api/org/apache/hadoop/fs/FileSystem.html).removeXAt * Submit a HTTP GET request. - curl -i -X PUT "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=GETXATTRS + curl -i "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=GETXATTRS &xattr.name=<XATTRNAME>&encoding=<ENCODING>" The client receives a response with a [`XAttrs` JSON object](#XAttrs_JSON_Schema): @@ -789,7 +789,7 @@ See also: [FileSystem](../../api/org/apache/hadoop/fs/FileSystem.html).getXAttr * Submit a HTTP GET request. - curl -i -X PUT "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=GETXATTRS + curl -i "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=GETXATTRS &xattr.name=<XATTRNAME1>&xattr.name=<XATTRNAME2> &encoding=<ENCODING>" @@ -818,7 +818,7 @@ See also: [FileSystem](../../api/org/apache/hadoop/fs/FileSystem.html).getXAttrs * Submit a HTTP GET request. - curl -i -X PUT "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=GETXATTRS + curl -i "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=GETXATTRS &encoding=<ENCODING>" The client receives a response with a [`XAttrs` JSON object](#XAttrs_JSON_Schema): @@ -850,7 +850,7 @@ See also: [FileSystem](../../api/org/apache/hadoop/fs/FileSystem.html).getXAttrs * Submit a HTTP GET request. - curl -i -X PUT "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=LISTXATTRS" + curl -i "http://<HOST>:<PORT>/webhdfs/v1/<PATH>?op=LISTXATTRS" The client receives a response with a [`XAttrNames` JSON object](#XAttrNames_JSON_Schema):
