-
-
Notifications
You must be signed in to change notification settings - Fork 631
salesforce: Rename email package and pardot-test-srv #8523
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
base: main
Are you sure you want to change the base?
Conversation
|
@beautifulentropy, this PR appears to contain configuration and/or SQL schema changes. Please ensure that a corresponding deployment ticket has been filed with the new values. |
|
Converting to draft to tackle one more thing and file an SRE configuration issue. |
fc9e315 to
b27a90e
Compare
f085fda to
7d5df3c
Compare
7d5df3c to
366606a
Compare
| // provided details. Any retries are handled internally by the SalesforceClient. | ||
| // The following fields are required: Origin, Subject, ContactEmail. | ||
| func (impl *ExporterImpl) SendCase(ctx context.Context, req *emailpb.SendCaseRequest) (*emptypb.Empty, error) { | ||
| // The following fields are required: Origin, Subject, Contactsalesforce. |
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.
Accidental find-replace:
| // The following fields are required: Origin, Subject, Contactsalesforce. | |
| // The following fields are required: Origin, Subject, ContactEmail. |
| srv := bgrpc.NewServer(c.EmailExporter.GRPC, logger) | ||
| srv = srv.Add(&salesforcepb.Exporter_ServiceDesc, server) | ||
| // TODO(#8410): Remove emailpb.Exporter once fully migrated to | ||
| // salesforcepb.Exporter. | ||
| srv = srv.Add(&emailpb.Exporter_ServiceDesc, legacyEmailExporterServer{inner: server}) | ||
| start, err := srv.Build(tlsConfig, scope, clk) |
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.
nit: I have a slight preference for still doing this all in one go, as we do in the SA, rather than overwriting srv multiple times:
boulder/cmd/boulder-sa/main.go
Lines 94 to 97 in 5cd6873
| start, err := bgrpc.NewServer(c.SA.GRPC, logger).WithCheckInterval(c.SA.HealthCheckInterval.Duration).Add( | |
| &sapb.StorageAuthorityReadOnly_ServiceDesc, saroi).Add( | |
| &sapb.StorageAuthority_ServiceDesc, sai).Build( | |
| tls, scope, clk) |
Part of #8410
Note
Configuration changes are being tracked in IN-12078 and IN-12087.