Skip to content

Commit 5ff77e4

Browse files
remove aud warning
1 parent 136d01a commit 5ff77e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gen3workflow/auth.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ async def get_token_claims(self) -> dict:
5959
)
6060

6161
try:
62-
token_claims = await access_token(
63-
"user", "openid", audience="openid", purpose="access"
64-
)(self.bearer_token)
62+
token_claims = await access_token("user", "openid", purpose="access")(
63+
self.bearer_token
64+
)
6565
except Exception as e:
6666
err_msg = "Could not verify, parse, and/or validate provided access token"
6767
logger.error(

0 commit comments

Comments
 (0)