File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -199,8 +199,10 @@ async def oauth_authorize_proxy(
199
199
if not scope :
200
200
logger .warning ("Client didn't provide any scopes! Using default scopes." )
201
201
scope = default_scope
202
+ logger .debug (f"Default scope: { scope } " )
202
203
203
204
scopes = scope .split ()
205
+ logger .debug (f"Scopes passed: { scopes } " )
204
206
for required_scope in default_scope .split ():
205
207
if required_scope not in scopes :
206
208
scopes .append (required_scope )
Original file line number Diff line number Diff line change @@ -275,6 +275,7 @@ def _setup_auth_2025_03_26(self):
275
275
client_id = self ._auth_config .client_id ,
276
276
authorize_url = self ._auth_config .authorize_url ,
277
277
audience = self ._auth_config .audience ,
278
+ default_scope = self ._auth_config .default_scope ,
278
279
)
279
280
if self ._auth_config .setup_fake_dynamic_registration :
280
281
assert self ._auth_config .client_secret is not None
You can’t perform that action at this time.
0 commit comments