-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Productionize llo transmitter #14355
Conversation
eb67ede
to
d6eed74
Compare
@@ -22,7 +22,7 @@ func TestEVMForwarderPresenter_RenderTable(t *testing.T) { | |||
t.Parallel() | |||
|
|||
var ( | |||
id = "1" | |||
id = "ID:" |
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.
This was needed to fix a flake
423ffd1
to
b824d18
Compare
if p.RawServerURL == "" { | ||
merr = errors.Join(merr, errors.New("llo: ServerURL must be specified")) | ||
if len(p.Servers) == 0 { | ||
merr = errors.Join(merr, errors.New("llo: At least one Mercury server must be specified")) |
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.
Should it be "Mercury server"? this transmitter is purely for Data Engine?
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.
Well, in this case the nomenclature is shifting a bit. I’m still referring to the server as “mercury”, this is specific to transmitting to the server.
The plugin itself does not reference it
6e1742a
to
2d74231
Compare
3052c57
to
f53a551
Compare
f53a551
to
ce9948c
Compare
This mostly copies over similar patterns and structure from the battle-tested mercury transmitter, with a few modifications to generalize it to LLO
65c1eec
ce9948c
to
65c1eec
Compare
Quality Gate passedIssues Measures |
Productionize LLO transmitter.
This mostly copies over similar patterns and structure from the battle-tested mercury transmitter, with a few modifications to generalize it to LLO.