-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sporadic github action build failure fix #522
Changes from 16 commits
aefae13
a863de0
388c2bd
0d5bf25
cfa3536
02cd15d
22a8170
50aa761
2a6cce2
b9294f7
ef53720
f053fb3
4065608
3485562
7830b57
e4a3d78
8f41149
f173def
adea88a
857620c
17ecb05
fcc176b
e737b9c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,6 +73,8 @@ write zilla:begin.ext ${kafka:beginEx() | |
.build()} | ||
write flush | ||
|
||
write await SENT_ABORT | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be between There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure if I understood you correctly, it is between those two message There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't mean the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. test are failing if I put between the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, makes sense - the barrier needs to go before the flush. |
||
write advise zilla:flush ${kafka:flushEx() | ||
.typeId(zilla:id("kafka")) | ||
.fetch() | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,6 +90,8 @@ read zilla:data.ext ${kafka:matchDataEx() | |
.build()} | ||
read "Hello, world" | ||
|
||
read notify SENT_ABORT | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Normally we think of barriers as events that need to be notified because they happened, rather than naming something yet to happen in the future. So we should rename this to reflect what has already happened here. Suggest something like |
||
read advised zilla:flush ${kafka:flushEx() | ||
.typeId(zilla:id("kafka")) | ||
.fetch() | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also suggest we just inline this, since we don't need a separate
Engine.drain()
method.