Skip to content

Commit d0ad4bc

Browse files
committed
typo fixes
Signed-off-by: Maia Iyer <maia.raj.iyer@gmail.com>
1 parent 86ba019 commit d0ad4bc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • a2a/slack_researcher/slack_researcher

a2a/slack_researcher/slack_researcher/auth.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ def __init__(self, message: str, status_code: int = 401):
3737

3838
class BearerAuthBackend(AuthenticationBackend):
3939
def __init__(self):
40-
if settings.JWKS_URL is None: # TODO implement oidc discovery in this case
41-
raise Exception("JWKS_URL env var not set. ")
42-
self.jwks_url = settings.JWKS_URL
40+
if settings.JWKS_URI is None: # TODO implement oidc discovery in this case
41+
raise Exception("JWKS_URI env var not set. ")
42+
self.jwks_url = settings.JWKS_URI
4343

4444
self.claims_options = {}
4545
if settings.AUDIENCE is None:

0 commit comments

Comments
 (0)