-
-
Notifications
You must be signed in to change notification settings - Fork 608
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
SA: store and return certificate profile name #7352
SA: store and return certificate profile name #7352
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.
This change needs to be rebased to only contain the SA changes. Also, the SA (well, //core, really) changes seem so small that I think they can be done in the same PR as adding actual SA support.
This change is also going to need to add the profile name to sapb.NewOrderRequest
.
@pgporada, 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. |
3e878bf
to
fcdd44b
Compare
SRE ticket IN-10145 has been filed to perform the database migration and enable the new feature flag. |
Adds
certificateProfileName
to theorders
database table. The maximum length of a profile name matches the//issuance
package.Adds a
MultipleCertificateProfiles
feature flag that, when enabled, will store the certificate profile name from aNewOrderRequest
. The certificate profile name is allowed to be empty and the database will treat that row as NULL. When the SA retrieves this potentially NULL row, it will be cast as the golang string zero value""
.SRE ticket IN-10145 has been filed to perform the database migration and enable the new feature flag. The migration must be performed before enabling the feature flag.
Part of #7324
Part of #7309