Skip to content

Commit 459de03

Browse files
authored
GH-8738: Fix MQTT inbound example syntax error
Fixes #8738
1 parent 10e79ba commit 459de03

File tree

1 file changed

+1
-1
lines changed
  • src/reference/antora/modules/ROOT/pages

1 file changed

+1
-1
lines changed

src/reference/antora/modules/ROOT/pages/mqtt.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ public class MqttJavaApplication {
237237
public IntegrationFlow mqttInbound() {
238238
return IntegrationFlow.from(
239239
new MqttPahoMessageDrivenChannelAdapter("tcp://localhost:1883",
240-
"testClient", "topic1", "topic2");)
240+
"testClient", "topic1", "topic2"))
241241
.handle(m -> System.out.println(m.getPayload()))
242242
.get();
243243
}

0 commit comments

Comments
 (0)