HADOOP-12324. Better exception reporting in SaslPlainServer. (Mike Yoder via stevel)
This commit is contained in:
parent
486d5cb803
commit
ca0827a862
|
@ -765,6 +765,9 @@ Release 2.8.0 - UNRELEASED
|
|||
HADOOP-12384. Add "-direct" flag option for fs copy so that user can choose
|
||||
not to create "._COPYING_" file (J.Andreina via vinayakumarb)
|
||||
|
||||
HADOOP-12324. Better exception reporting in SaslPlainServer.
|
||||
(Mike Yoder via stevel)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
HADOOP-11785. Reduce the number of listStatus operation in distcp
|
||||
|
|
|
@ -105,7 +105,7 @@ public class SaslPlainServer implements SaslServer {
|
|||
authz = ac.getAuthorizedID();
|
||||
}
|
||||
} catch (Exception e) {
|
||||
throw new SaslException("PLAIN auth failed: " + e.getMessage(), e);
|
||||
throw new SaslException("PLAIN auth failed: " + e.toString(), e);
|
||||
} finally {
|
||||
completed = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue