Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Apr 29, 2024
1 parent 0576a14 commit 9850cfb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions e2e_test/source/basic/alter/rate_limit_source_kafka.slt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ statement ok
create sink kafka_sink
from
kafka_seed_data with (
properties.bootstrap.server = 'localhost:29092',
properties.bootstrap.server = 'message_queue:29092',
topic = 'kafka_source',
type = 'append-only',
force_append_only='true',
Expand All @@ -29,7 +29,7 @@ statement ok
create source kafka_source (v1 int) with (
connector = 'kafka',
topic = 'kafka_source',
properties.bootstrap.server = 'localhost:29092',
properties.bootstrap.server = 'message_queue:29092',
scan.startup.mode = 'earliest',
) FORMAT PLAIN ENCODE JSON

Expand Down
4 changes: 2 additions & 2 deletions e2e_test/source/basic/alter/rate_limit_table_kafka.slt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ statement ok
create sink kafka_sink
from
kafka_seed_data with (
properties.bootstrap.server = 'localhost:29092',
properties.bootstrap.server = 'message_queue:29092',
topic = 'kafka_source',
type = 'append-only',
force_append_only='true',
Expand All @@ -25,7 +25,7 @@ statement ok
create table kafka_source (v1 int) with (
connector = 'kafka',
topic = 'kafka_source',
properties.bootstrap.server = 'localhost:29092',
properties.bootstrap.server = 'message_queue:29092',
scan.startup.mode = 'earliest',
streaming_rate_limit = 0
) FORMAT PLAIN ENCODE JSON
Expand Down

0 comments on commit 9850cfb

Please sign in to comment.