-
Notifications
You must be signed in to change notification settings - Fork 8
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
feat: add module update events #3600
Conversation
634c73d
to
d3c8303
Compare
return nil, fmt.Errorf("could not get schemas: %w", err) | ||
} | ||
for deployment, module := range schemas { | ||
if module.Name != req.Msg.Module { |
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 should use the deployment key at some point, but we don't have it in the schema runtime data yet.
d3c8303
to
7089658
Compare
import ( | ||
"bytes" | ||
"testing" | ||
// func TestRedact(t *testing.T) { |
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.
Currently everything gets stored in the schema, so we're not redacting anything.
7089658
to
6199a1a
Compare
This pattern allows us to update the runtime metadata for a module through the SchemaService.
6199a1a
to
394d485
Compare
This pattern allows us to update the runtime metadata for a module through the SchemaService.
This pattern allows us to update the runtime metadata for a module through the SchemaService.