Skip to content

Commit

Permalink
Fix #200
Browse files Browse the repository at this point in the history
  • Loading branch information
cressie176 committed Jun 14, 2022
1 parent 8427ae4 commit 155c57e
Show file tree
Hide file tree
Showing 4 changed files with 3,833 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 14.4.5

- Fixed issue where a partial password could be logged in debug - See https://github.com/guidesmiths/rascal/issues/200 - thanks @matt1097

## 14.4.4

- Fixed issue where channels were not returned to the pool after publishing a large messag - See https://github.com/guidesmiths/rascal/issues/199
Expand Down
2 changes: 1 addition & 1 deletion lib/config/configure.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ module.exports = _.curry((rascalConfig, next) => {
connection.pathname = connection.vhost === '/' ? '' : connection.vhost;
connection.query = connection.options;
connection.url = connection.url || url.format(connection);
connection.loggableUrl = connection.url.replace(/:[^:]*?@/, ':***@');
connection.loggableUrl = connection.url.replace(/:[^:]*@/, ':***@');
connection.index = getConnectionIndex(vhostConfig.connectionStrategy, connection, index);
configureManagementConnection(vhostConfig, vhostName, connection);
}
Expand Down
Loading

0 comments on commit 155c57e

Please sign in to comment.