[AMQ-5499]

Correct StopBrokerMojo to use a default broker manager.
This commit is contained in:
artnaseef 2015-01-02 10:23:38 -07:00
parent c0eae1bfff
commit a14af92dc3
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public class StopBrokerMojo extends AbstractMojo {
return; return;
} }
this.brokerManager.stop(); this.useBrokerManager().stop();
getLog().info("Stopped the ActiveMQ Broker"); getLog().info("Stopped the ActiveMQ Broker");
} }