Skip to content

Commit

Permalink
fix: Use scope parameter rather than scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisburr authored Sep 28, 2023
1 parent edee596 commit 54da098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DIRAC/FrameworkSystem/Service/ProxyManagerHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ def export_exchangeProxyForToken(self):
f"{diracxUrl}/auth/legacy-exchange",
params={
"preferred_username": credDict["username"],
"scopes": " ".join(scopes),
"scope": " ".join(scopes),
},
headers={"Authorization": f"Bearer {apiKey}"},
)
Expand Down

0 comments on commit 54da098

Please sign in to comment.