Skip to content

Commit 8239413

Browse files
committed
update some docs deps
1 parent 0b2f12f commit 8239413

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

starters/async-rabbit-starter/src/main/java/org/reactivecommons/async/rabbit/RabbitMQSetupUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
import org.reactivecommons.async.rabbit.communications.ReactiveMessageListener;
1515
import org.reactivecommons.async.rabbit.communications.ReactiveMessageSender;
1616
import org.reactivecommons.async.rabbit.communications.TopologyCreator;
17-
import org.reactivecommons.async.rabbit.communications.UnroutableMessageHandler;
1817
import org.reactivecommons.async.rabbit.communications.UnroutableMessageNotifier;
1918
import org.reactivecommons.async.rabbit.config.ConnectionFactoryProvider;
2019
import org.reactivecommons.async.rabbit.config.RabbitProperties;
@@ -100,7 +99,8 @@ public static ReactiveMessageSender createMessageSender(ConnectionFactoryProvide
10099
UnroutableMessageNotifier unroutableMessageNotifier) {
101100
final Sender sender = RabbitFlux.createSender(reactiveCommonsSenderOptions(props.getAppName(), provider,
102101
props.getConnectionProperties()));
103-
return new ReactiveMessageSender(sender, props.getAppName(), converter, new TopologyCreator(sender, props.getQueueType()),
102+
return new ReactiveMessageSender(sender, props.getAppName(), converter, new TopologyCreator(sender,
103+
props.getQueueType()),
104104
props.getMandatory(), unroutableMessageNotifier
105105
);
106106
}
@@ -155,7 +155,7 @@ private static SenderOptions reactiveCommonsSenderOptions(String appName, Connec
155155

156156
private static Mono<Connection> createConnectionMono(ConnectionFactory factory, String connectionPrefix,
157157
String connectionType) {
158-
System.out.println("Creating connection mono to RabbitMQ Broker in host '" + factory.getHost() + "' with " +
158+
log.info("Creating connection mono to RabbitMQ Broker in host '" + factory.getHost() + "' with " +
159159
"type: " + connectionType);
160160
return Mono.fromCallable(() -> factory.newConnection(connectionPrefix + " " + connectionType))
161161
.doOnError(err ->

0 commit comments

Comments
 (0)