Skip to content

Commit

Permalink
Reset mqtt broker in e2e test to mqtt-server instead of localhost
Browse files Browse the repository at this point in the history
  • Loading branch information
Boudewijn26 committed Oct 23, 2024
1 parent ae9f988 commit d3a6caf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions e2e_test/sink/mqtt_sink.slt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ FROM
WITH
(
connector='mqtt',
url='tcp://127.0.0.1',
url='tcp://mqtt-server',
type = 'append-only',
topic.field = 'topic',
retain = 'true',
Expand All @@ -37,7 +37,7 @@ FROM
WITH
(
connector='mqtt',
url='tcp://127.0.0.1',
url='tcp://mqtt-server',
type = 'append-only',
topic = '/nested/fallback',
topic.field = 'info.topic',
Expand Down Expand Up @@ -85,7 +85,7 @@ CREATE TABLE mqtt_source
INCLUDE partition AS mqtt_topic
WITH (
connector ='mqtt',
url ='tcp://127.0.0.1',
url ='tcp://mqtt-server',
topic = '/device/+',
qos = 'at_least_once',
) FORMAT PLAIN ENCODE JSON;
Expand All @@ -98,7 +98,7 @@ CREATE TABLE mqtt_nested_source
)
WITH (
connector='mqtt',
url='tcp://127.0.0.1',
url='tcp://mqtt-server',
topic= '/nested/fallback',
qos = 'at_least_once',
) FORMAT PLAIN ENCODE JSON;
Expand Down

0 comments on commit d3a6caf

Please sign in to comment.