Hide Forgot
Description of problem: See the message from the log 2012-01-17 09:10:55,769 DEBUG [org.apache.qpid.client.AMQConnectionDelegate_0_10:213] (RMI TCP Connection(13)-127.0.0.1) connecting to host: mrg01.mw.lab.eng.bos.redhat.com port: 5672 vhost: test username: guest password: guest The password should not be printed in clear text
Fixing incorrect product flag
Fix committed upstream on trunk at revision 1232605.
Jira: QPID-3763
Technical note added. If any revisions are required, please edit the "Technical Notes" field accordingly. All revisions will be proofread by the Engineering Content Services team. New Contents: Cause: If no-local is set on a connection, messages sent by the the connection should not be received by consumers using the same connection. Currently no-local flag is ignored. Consequence: Messages sent by the same connection is received even if no-local is set. Fix: Pass the no-local flag along with queue-declare arguments when creating the subscription queue. Result: Messages sent by the same connection are no longer received by the consumers on the same connection if no-local is set.
Technical note updated. If any revisions are required, please edit the "Technical Notes" field accordingly. All revisions will be proofread by the Engineering Content Services team. Diffed Contents: @@ -1,8 +1,7 @@ -Cause: If no-local is set on a connection, messages sent by the the connection should not be received by consumers using the same connection. - Currently no-local flag is ignored. +Cause: Password is printed in clear text. -Consequence: Messages sent by the same connection is received even if no-local is set. +Consequence: Poses a security threat as password details can be gleaned from the logs. -Fix: Pass the no-local flag along with queue-declare arguments when creating the subscription queue. +Fix: Print xxxx instead. -Result: Messages sent by the same connection are no longer received by the consumers on the same connection if no-local is set.+Result: Plain text passwords are no longer printed in the log files.