Skip to content

Commit

Permalink
ROPC also bypass broker, for now
Browse files Browse the repository at this point in the history
  • Loading branch information
rayluo committed Nov 2, 2023
1 parent f809634 commit e828fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msal/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -1637,7 +1637,7 @@ def acquire_token_by_username_password(
"""
claims = _merge_claims_challenge_and_capabilities(
self._client_capabilities, claims_challenge)
if self._enable_broker:
if False: # Disabled, for now. It was if self._enable_broker:
from .broker import _signin_silently
response = _signin_silently(
"https://{}/{}".format(self.authority.instance, self.authority.tenant),
Expand Down

0 comments on commit e828fcd

Please sign in to comment.