-
Notifications
You must be signed in to change notification settings - Fork 50
Conversation
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.
Check the default value of P2P discovery address. Was that intentional?
Otherwise, minor nitpicks/suggestions; in general LGTM 👍
crates/cli/localkey.pki
Outdated
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.
I'd maybe drop this from the repo & add a .gitignore
entry for localkey.pki
or *.pki
.
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.
Yes good idea I add it. I didn't see I've added it.
#[arg( | ||
long, | ||
long_help = "", | ||
env = "GEVULOT_P2P_DISCOVERY_ADDR", | ||
default_value = "34.88.251.176:9999" | ||
)] | ||
#[arg(long, long_help = "", env = "GEVULOT_P2P_DISCOVERY_ADDR")] |
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.
Why drop the default value?
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.
To manage the case the node start without connecting, sort of primary bootstraper. In this case, you specify nothing and the node didn't try to connect.
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.
LGTM 👍
Folding all PRs for operator onboarding 🙂 |
Add Deploy Tx prover and image file propagation among all nodes.
Does a Run Tx can contain a download file? I'm not sure, it works in this case because of the path. The download manager server its file from the image directory.
I correct an issue with the Tx propagation. The Tx wasn't processed the same way if it came from RPC or p2p. The correction is hard coded to avoid to add another Mutex.