diff --git a/hadoop-common-project/hadoop-auth/src/site/markdown/Configuration.md b/hadoop-common-project/hadoop-auth/src/site/markdown/Configuration.md
index 9d076bb0be..2f9b8606aa 100644
--- a/hadoop-common-project/hadoop-auth/src/site/markdown/Configuration.md
+++ b/hadoop-common-project/hadoop-auth/src/site/markdown/Configuration.md
@@ -73,12 +73,13 @@ To use Kerberos SPNEGO as the authentication mechanism, the authentication filte
**Example**:
+```xml
...
kerberosFilter
- org.apache.hadoop.security.auth.server.AuthenticationFilter
+ org.apache.hadoop.security.authentication.server.AuthenticationFilter
type
kerberos
@@ -112,6 +113,7 @@ To use Kerberos SPNEGO as the authentication mechanism, the authentication filte
...
+```
### Pseudo/Simple Configuration
@@ -125,12 +127,13 @@ To use Pseudo/Simple as the authentication mechanism (trusting the value of the
**Example**:
+```xml
...
simpleFilter
- org.apache.hadoop.security.auth.server.AuthenticationFilter
+ org.apache.hadoop.security.authentication.server.AuthenticationFilter
type
simple
@@ -160,6 +163,7 @@ To use Pseudo/Simple as the authentication mechanism (trusting the value of the
...
+```
### AltKerberos Configuration
@@ -175,12 +179,13 @@ The AltKerberos authentication mechanism is a partially implemented derivative o
**Example**:
+```xml
...
kerberosFilter
- org.apache.hadoop.security.auth.server.AuthenticationFilter
+ org.apache.hadoop.security.authentication.server.AuthenticationFilter
type
org.my.subclass.of.AltKerberosAuthenticationHandler
@@ -218,6 +223,7 @@ The AltKerberos authentication mechanism is a partially implemented derivative o
...
+```
### SignerSecretProvider Configuration
@@ -262,6 +268,7 @@ The following configuration properties are specific to the `zookeeper` implement
**Example**:
+```xml
...
@@ -279,9 +286,11 @@ The following configuration properties are specific to the `zookeeper` implement
...
+```
**Example**:
+```xml
...
@@ -299,9 +308,11 @@ The following configuration properties are specific to the `zookeeper` implement
...
+```
**Example**:
+```xml
...
@@ -339,3 +350,4 @@ The following configuration properties are specific to the `zookeeper` implement
...
+```
diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt
index 44c2969ead..a0e6e90924 100644
--- a/hadoop-common-project/hadoop-common/CHANGES.txt
+++ b/hadoop-common-project/hadoop-common/CHANGES.txt
@@ -631,6 +631,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-12043. Display warning if defaultFs is not set when running fs
commands. (Lei Xu via wang)
+ HADOOP-12037. Fix wrong classname in example configuration of hadoop-auth
+ documentation. (Masatake Iwasaki via wang)
+
OPTIMIZATIONS
HADOOP-11785. Reduce the number of listStatus operation in distcp