@@ -672,6 +672,7 @@ def _decide_broker(self, allow_broker, enable_pii_log):
672672 "allow_broker is deprecated. "
673673 "Please use PublicClientApplication(..., "
674674 "enable_broker_on_windows=True, "
675+ "enable_broker_on_linux=True, "
675676 "enable_broker_on_mac=...)" ,
676677 DeprecationWarning )
677678 opted_in_for_broker = (
@@ -1921,7 +1922,7 @@ def __init__(self, client_id, client_credential=None, **kwargs):
19211922
19221923 .. note::
19231924
1924- You may set enable_broker_on_windows and/or enable_broker_on_mac to True.
1925+ You may set enable_broker_on_windows and/or enable_broker_on_mac and/or enable_broker_on_linux to True.
19251926
19261927 **What is a broker, and why use it?**
19271928
@@ -1989,6 +1990,12 @@ def __init__(self, client_id, client_credential=None, **kwargs):
19891990 This parameter defaults to None, which means MSAL will not utilize a broker.
19901991
19911992 New in MSAL Python 1.31.0.
1993+
1994+ :param boolean enable_broker_on_linux:
1995+ This setting is only effective if your app is running on Linux.
1996+ This parameter defaults to None, which means MSAL will not utilize a broker.
1997+
1998+ New in MSAL Python 1.32.0.
19921999 """
19932000 if client_credential is not None :
19942001 raise ValueError ("Public Client should not possess credentials" )
0 commit comments