dianagudu / motley_cue

A service for mapping OIDC identities to local identities, with local user management
https://motley-cue.readthedocs.io/
MIT License
8 stars 3 forks source link

One-time tokens are sometimes not found in the local token db #49

Closed dianagudu closed 1 year ago

dianagudu commented 1 year ago

https://github.com/dianagudu/motley_cue/blob/2527145d4e3fbcb1fa7efb3bea34c1bef2511f9e/motley_cue/mapper/token_manager.py#L337

lstrip sometimes removes more characters than necessary. replace with:

header.lstrip("Bearer").lstrip()