From bf2e1f3a3e9e0505dc51c2e0076cdfa3232da58a Mon Sep 17 00:00:00 2001 From: Adama Sorho Date: Mon, 18 Sep 2023 22:21:11 -0500 Subject: [PATCH] GH-8738: Fix MQTT inbound example syntax error Fixes spring-projects/spring-integration#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 bbad0a567c6..4bebcc64448 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(); }