Skip to content
This repository was archived by the owner on Sep 22, 2020. It is now read-only.

Commit cdcbf06

Browse files
committed
Fixed bug in RabbitDriver that caused it to ignore passwords
1 parent 402cf90 commit cdcbf06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Drivers/RabbitDriver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class RabbitDriver extends BaseDriver {
4545
uri.auth = config.user
4646

4747
if(!config.password.isNil) {
48-
uri.password += `:${config.password}`
48+
uri.auth += `:${config.password}`
4949
}
5050
}
5151

0 commit comments

Comments
 (0)