fix(dashboard): set headers for JWKS requests

This commit is contained in:
James Hodgkinson 2026-06-20 22:12:30 +10:00 committed by Austin Pickett
parent eb08467a7a
commit 83cee29ff7
2 changed files with 24 additions and 0 deletions

View file

@ -601,6 +601,10 @@ class SelfHostedOIDCProvider(DashboardAuthProvider):
disco["jwks_uri"],
cache_keys=True,
lifespan=_JWKS_CACHE_SECONDS,
headers={
"Accept": "application/json",
"User-Agent": "HermesAgent/1.0",
},
)
return self._jwks_client