diff options
author | mathieui <mathieui@mathieui.net> | 2021-01-31 19:38:12 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-01-31 19:39:12 +0100 |
commit | 846c42e38628749fbee9c9a23637dc316028dcb5 (patch) | |
tree | 43048d20ea2e0f16babfcb875b8f6b5a4ae3637b | |
parent | 1f97462391a18a0e45a88ec866bb6c3cc76b04a6 (diff) | |
download | slixmpp-846c42e38628749fbee9c9a23637dc316028dcb5.tar.gz slixmpp-846c42e38628749fbee9c9a23637dc316028dcb5.tar.bz2 slixmpp-846c42e38628749fbee9c9a23637dc316028dcb5.tar.xz slixmpp-846c42e38628749fbee9c9a23637dc316028dcb5.zip |
XEP-0045: make the join_muc_wait timeout parameter optional
-rw-r--r-- | slixmpp/plugins/xep_0045/muc.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/slixmpp/plugins/xep_0045/muc.py b/slixmpp/plugins/xep_0045/muc.py index e156ded1..ab67d4bc 100644 --- a/slixmpp/plugins/xep_0045/muc.py +++ b/slixmpp/plugins/xep_0045/muc.py @@ -264,7 +264,7 @@ class XEP_0045(BasePlugin): seconds: Optional[int] = None, since: Optional[datetime] = None, presence_options: Optional[Dict[str, str]] = None, - timeout: int = 30) -> Presence: + timeout: Optional[int] = None) -> Presence: """ Try to join a MUC and block until we are joined or get an error. @@ -276,6 +276,8 @@ class XEP_0045(BasePlugin): :param maxstanzas: Max number of stanzas to return from history. :param seconds: Fetch history until that many seconds in the past. :param since: Fetch history since that timestamp. + :param timeout: Timeout after which a TimeoutError is raised. + None means no timeout. :raises: A slixmpp.exceptions.PresenceError if the MUC returns a presence error. :raises: An asyncio.TimeoutError if there is neither success nor |