You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're potentially writing a new CA.CRT file every time we switch to a client cert-key pair - we could solve this with something like the following code in assignAuthenticationCertificateAndKeyToConnection() and assignServiceAccountToConnection(), but we'd need to back up the CA.CRT path whenever we switch to token again.
// If our current authz context had a cert auth path file (i.e., if we were using a cert-key pair), delete it
if len(info.ClientKeyPath) > 0 {
os.Remove(info.CAPath)
}
The text was updated successfully, but these errors were encountered:
We're potentially writing a new CA.CRT file every time we switch to a client cert-key pair - we could solve this with something like the following code in
assignAuthenticationCertificateAndKeyToConnection()
andassignServiceAccountToConnection()
, but we'd need to back up the CA.CRT path whenever we switch to token again.The text was updated successfully, but these errors were encountered: