Skip to content
Merged
Prev Previous commit
Next Next commit
Fix script
  • Loading branch information
akrambek committed Jan 16, 2024
commit 276ca31ffe5451a4e4029166261fe7ae528ec57b
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ write zilla:data.ext ${kafka:dataEx()
.typeId(zilla:id("kafka"))
.produce()
.timestamp(newTimestamp)
.sequence(0)
.build()
.build()}
write "Hello, world"
Expand All @@ -83,6 +84,7 @@ write zilla:data.ext ${kafka:dataEx()
.typeId(zilla:id("kafka"))
.produce()
.timestamp(newTimestamp)
.sequence(1)
.build()
.build()}
write "Hello, world"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,15 @@ write zilla:begin.ext ${kafka:beginEx()
read zilla:data.ext ${kafka:matchDataEx()
.typeId(zilla:id("kafka"))
.produce()
.sequence(0)
.build()
.build()}
read "Hello, world"

read zilla:data.ext ${kafka:matchDataEx()
.typeId(zilla:id("kafka"))
.produce()
.sequence(1)
.build()
.build()}
read "Hello, world"