|
@@ -674,7 +674,7 @@ async def signout(request: Request, response: Response):
|
|
|
oauth_id_token = request.cookies.get("oauth_id_token")
|
|
|
if oauth_id_token:
|
|
|
try:
|
|
|
- async with ClientSession() as session:
|
|
|
+ async with ClientSession(trust_env=True) as session:
|
|
|
async with session.get(OPENID_PROVIDER_URL.value) as resp:
|
|
|
if resp.status == 200:
|
|
|
openid_data = await resp.json()
|