Don't include auth credentials in debug log

Patch by Sam Tunnicliffe; reviewed by Brandon Williams for
CASSANDRA-9682
This commit is contained in:
Sam Tunnicliffe 2015-07-15 15:29:25 +01:00
parent 52dbc3f1ba
commit 1d54fc3397
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
2.0.17
* Don't include auth credentials in debug log (CASSANDRA-9682)
* Can't transition from write survey to normal mode (CASSANDRA-9740)
* Avoid NPE in AuthSuccess#decode (CASSANDRA-9727)
* Add listen_address to system.local (CASSANDRA-9603)

View File

@ -89,6 +89,6 @@ public class CredentialsMessage extends Message.Request
@Override
public String toString()
{
return "CREDENTIALS " + credentials;
return "CREDENTIALS";
}
}