correct span names

This commit is contained in:
adlerhurst 2024-03-07 10:44:24 +01:00
parent 88209ac11d
commit 7069813ec7
5 changed files with 4 additions and 6 deletions

View file

@ -156,7 +156,7 @@ func RevocationError(err error) StatusError {
}
func getTokenIDAndSubjectForRevocation(ctx context.Context, userinfoProvider UserinfoProvider, accessToken string) (string, string, bool) {
ctx, span := tracer.Start(ctx, "getTokenIDAndSubjectFromRevocation")
ctx, span := tracer.Start(ctx, "getTokenIDAndSubjectForRevocation")
defer span.End()
tokenIDSubject, err := userinfoProvider.Crypto().Decrypt(accessToken)