jws: remove issuer (#1754)

This commit is contained in:
Caleb Doxsey 2021-01-11 07:57:54 -07:00 committed by GitHub
parent e3b4c6d597
commit b16236496b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 18 additions and 23 deletions

View file

@ -160,7 +160,7 @@ var serviceAccountCmd = &cobra.Command{
}
serviceAccountOptions.serviceAccount.ID = sa.GetId()
encoder, err := jws.NewHS256Signer([]byte(sharedKey), serviceAccountOptions.serviceAccount.Issuer)
encoder, err := jws.NewHS256Signer([]byte(sharedKey))
if err != nil {
return fmt.Errorf("bad shared key: %w", err)
}