From 459de03ea307f2971ecfcf03d1069bf63c434927 Mon Sep 17 00:00:00 2001 From: Adama Sorho <37632838+AdamaSorho@users.noreply.github.com> Date: Tue, 19 Sep 2023 09:37:44 -0500 Subject: [PATCH] GH-8738: Fix MQTT inbound example syntax error Fixes https://github.com/spring-projects/spring-integration/issues/8738 --- src/reference/antora/modules/ROOT/pages/mqtt.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reference/antora/modules/ROOT/pages/mqtt.adoc b/src/reference/antora/modules/ROOT/pages/mqtt.adoc index bbad0a567c..4bebcc6444 100644 --- a/src/reference/antora/modules/ROOT/pages/mqtt.adoc +++ b/src/reference/antora/modules/ROOT/pages/mqtt.adoc @@ -237,7 +237,7 @@ public class MqttJavaApplication { public IntegrationFlow mqttInbound() { return IntegrationFlow.from( new MqttPahoMessageDrivenChannelAdapter("tcp://localhost:1883", - "testClient", "topic1", "topic2");) + "testClient", "topic1", "topic2")) .handle(m -> System.out.println(m.getPayload())) .get(); }