We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89ceaef commit 74aadacCopy full SHA for 74aadac
src/delegate.py
@@ -122,7 +122,7 @@ def handler(event, context: LambdaContext) -> dict:
122
'exp': exp,
123
'domains': list(domains),
124
'azp': refresh_token['azp'], # Authorized Party
125
- 'sub': ', '.join(existing_sub + [subject]), # sub must be string adhering to jwt spec: https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.2
+ 'sub': ','.join(existing_sub + [subject]), # sub must be string adhering to jwt spec: https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.2
126
}
127
logger.info({"message": "Issuing JWT", "jwt": delegate_token})
128
raw_delegate_token = jwt.encode(
0 commit comments