Skip to content

Commit

Permalink
disable oidc verify
Browse files Browse the repository at this point in the history
  • Loading branch information
Radu Carpa committed Dec 13, 2023
1 parent 4a8c078 commit 3c97ab3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/rucio/core/oidc.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def request_token(audience: str, scope: str, use_cache: bool = True) -> Optional

try:
response = requests.post(url=OIDC_PROVIDER_ENDPOINT,
verify=False,
auth=(OIDC_CLIENT_ID, OIDC_CLIENT_SECRET),
data={'grant_type': 'client_credentials',
'audience': audience,
Expand Down

0 comments on commit 3c97ab3

Please sign in to comment.