Skip to content

Commit 7aceb91

Browse files
committed
Wire up acquire_token_silent(..., force_refresh=...)
Interestingly, during last 10 months since this library was first released, there has been basically no customer found and asked for this feature (except only once, but that one was a red herring so he did not really want it #56 (comment) ).
1 parent 4550793 commit 7aceb91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msal/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ def acquire_token_silent(
414414
validate_authority=False,
415415
verify=self.verify, proxies=self.proxies, timeout=self.timeout)
416416
result = self._acquire_token_silent_from_cache_and_possibly_refresh_it(
417-
scopes, account, the_authority, **kwargs)
417+
scopes, account, the_authority, force_refresh=force_refresh, **kwargs)
418418
if result:
419419
return result
420420

0 commit comments

Comments
 (0)