Skip to content

Commit

Permalink
BOX-126 provide sensible defaults for the rabbitmq host config
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicWatson committed Jun 27, 2022
1 parent be42da7 commit 420a17f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test-harness/config/Coldbox.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@

moduleSettings = {
rabbitsdk = {
host : getSystemSetting( 'rabbit_host' ),
username : getSystemSetting( 'rabbit_username' ),
password : getSystemSetting( 'rabbit_password' ),
virtualHost : getSystemSetting( 'rabbit_virtualHost' ),
useSSL : getSystemSetting( 'rabbit_useSSL' )
host : getSystemSetting( 'rabbit_host', 'localhost' ),
username : getSystemSetting( 'rabbit_username', 'guest' ),
password : getSystemSetting( 'rabbit_password', 'guest' ),
virtualHost : getSystemSetting( 'rabbit_virtualHost', '/' ),
useSSL : getSystemSetting( 'rabbit_useSSL', '' )
}
};

Expand Down

0 comments on commit 420a17f

Please sign in to comment.