Skip to content

Commit a654737

Browse files
committed
PR feedback
1 parent 214ec74 commit a654737

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

msal/throttled_http_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ def __init__(self, *args, default_throttle_time=None, **kwargs):
126126
# TODO: We may want to disable it for confidential client, though
127127
_extract_data(kwargs, "refresh_token", # "account" during refresh
128128
_extract_data(kwargs, "code", # "account" of auth code grant
129-
_extract_data(kwargs, "username")))), # "account" of ROPC
129+
_extract_data(kwargs, "username", # "account" of ROPC
130+
_extract_data(kwargs, "user_id"))))), # "account" of user_fic (OID path)
130131
),
131132
expires_in=RetryAfterParser(default_throttle_time or 5).parse,
132133
)(self.post)

0 commit comments

Comments
 (0)