-
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
Add WorkflowRegistry to config #15280
Add WorkflowRegistry to config #15280
Conversation
5229d20
to
13802d1
Compare
AER Report: CI Core ran successfully ✅AER Report: Operator UI CI ran successfully ✅ |
20d758d
to
c9ad88b
Compare
e11a776
to
bb53d8b
Compare
@@ -279,6 +279,11 @@ Address = '' | |||
NetworkID = 'evm' | |||
ChainID = '1' | |||
|
|||
[Capabilities.WorkflowRegistry] | |||
Address = '' |
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.
@cedric-cordenier, does config-full
imply empty values?
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.
It just means that all values have been set explicitly
```toml | ||
NetworkID = 'evm' # Default | ||
``` | ||
NetworkID identifies the target network where the remote registry is located. |
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.
Could you list the other examples of the NetworkID values here as well?
ChainID *string | ||
} | ||
|
||
func (r *WorkflowRegistry) setFrom(f *WorkflowRegistry) { |
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.
Would an unset or empty field invalidate the node's config on boot if the WorkflowRegistry
is defined in the config but is missing a field or value?
Please reflect it (the invalid configuration) in your test data/scripts
by showing what would be an invalid way of setting the config.
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.
No, these are optional values so they can be unset.
Add config options to configure the WorkflowRegistry.