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
{{ message }}
This repository was archived by the owner on Jan 18, 2025. It is now read-only.
gcloud/credentials/generate_signed_url still expects to find the private key in _private_key_pkcs8_pem but it has been wrapped by the signer now. I can set it myself as has been done in the classmethod constructors, but this seems the wrong place to be doing this. The default __init__ should be setting this not classmethods as others, like me, may not be using them.
Should the key really be in both_private_key_pkcs8_pem and signer? This looks fragile, and indeed has broken for me.
Hi,
gcloud/credentials/generate_signed_url still expects to find the private key in
_private_key_pkcs8_pembut it has been wrapped by the signer now. I can set it myself as has been done in the classmethod constructors, but this seems the wrong place to be doing this. The default__init__should be setting this not classmethods as others, like me, may not be using them.Should the key really be in both
_private_key_pkcs8_pemandsigner? This looks fragile, and indeed has broken for me.Thanks