-
Notifications
You must be signed in to change notification settings - Fork 44
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
Update job specs examples #140
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.
Overall looks good to me!
i've never tested using env var parameters since it usually requires rebooting a node to test that it is set. But i believe it does work like that
examples/spec/ocr2-oracle.spec.toml
Outdated
usePreflight = false | ||
commitment = "confirmed" | ||
pollingInterval = "1s" | ||
pollingCtxTimeout = "2s" | ||
staleTimeout = "1m" |
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.
these are optional parameters, there are defaults included in the relay...not sure if we should have them here or not
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.
if you wanted to include these, then should they be included in the bootstrap spec too?
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.
Yup!
- Are all relevant for the bootstrap node?
- Are default values listed or should I fish for default values to document?
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.
- the
preflight
is the only one that is not since it's for transmissions (although it will just default to false anyway) - those are the default values! (the default
pollingCtxTimeout
is calculated via double thepollingInterval
)
No description provided.