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

@ -299,7 +299,7 @@ func (r *DeviceAuthorizationState) GetSubject() string {
}
func CheckDeviceAuthorizationState(ctx context.Context, clientID, deviceCode string, exchanger Exchanger) (*DeviceAuthorizationState, error) {
ctx, span := tracer.Start(ctx, "CheckDeviceAuthorization")
ctx, span := tracer.Start(ctx, "CheckDeviceAuthorizationState")
defer span.End()
storage, err := assertDeviceStorage(exchanger.Storage())