X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=plugins%2Fmcollective%2Fconnector%2Factivemq.rb;fp=plugins%2Fmcollective%2Fconnector%2Factivemq.rb;h=eadeb17127d5b498142a296d5325007919530c5d;hb=8fd0f35facc21b89b378ecfb253e06a66af1e422;hp=cb14647ef1b8c09602180f49a443fd772e086934;hpb=327162e6e319ff38447992668e0753363b870b6e;p=packages%2Fprecise%2Fmcollective.git diff --git a/plugins/mcollective/connector/activemq.rb b/plugins/mcollective/connector/activemq.rb index cb14647..eadeb17 100644 --- a/plugins/mcollective/connector/activemq.rb +++ b/plugins/mcollective/connector/activemq.rb @@ -32,7 +32,7 @@ module MCollective # plugin.activemq.pool.size = 2 # # plugin.activemq.pool.1.host = stomp1.your.net - # plugin.activemq.pool.1.port = 6163 + # plugin.activemq.pool.1.port = 61613 # plugin.activemq.pool.1.user = you # plugin.activemq.pool.1.password = secret # plugin.activemq.pool.1.ssl = true @@ -42,7 +42,7 @@ module MCollective # plugin.activemq.pool.1.ssl.fallback = true # # plugin.activemq.pool.2.host = stomp2.your.net - # plugin.activemq.pool.2.port = 6163 + # plugin.activemq.pool.2.port = 61613 # plugin.activemq.pool.2.user = you # plugin.activemq.pool.2.password = secret # plugin.activemq.pool.2.ssl = false @@ -161,7 +161,7 @@ module MCollective host = {} host[:host] = get_option("activemq.pool.#{poolnum}.host") - host[:port] = get_option("activemq.pool.#{poolnum}.port", 6163).to_i + host[:port] = get_option("activemq.pool.#{poolnum}.port", 61613).to_i host[:login] = get_env_or_option("STOMP_USER", "activemq.pool.#{poolnum}.user") host[:passcode] = get_env_or_option("STOMP_PASSWORD", "activemq.pool.#{poolnum}.password") host[:ssl] = get_bool_option("activemq.pool.#{poolnum}.ssl", false)