Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removing validation of authority for aliases
  • Loading branch information
abhidnya13 committed Mar 25, 2019
commit d87f098a1eeec333c529d219e0dee684e313b9cb
4 changes: 2 additions & 2 deletions msal/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,10 @@ def acquire_token_silent(
return result
for authority in self.aliases:
the_authority = Authority(
"https://" + authority + "/" + self.authority.tenant,
"https://" + authority + "/" + self.authority.tenant, validate_authority=False,
verify=self.verify, proxies=self.proxies, timeout=self.timeout,
)
result = self._acquire_token_silent(scopes, account, the_authority )
result = self._acquire_token_silent(scopes, account, the_authority)
if result:
return result

Expand Down