From 27dcbe2601e7a3e899e6bc84a6b1d28e6d9045da Mon Sep 17 00:00:00 2001 From: johaven Date: Wed, 27 May 2020 09:37:23 +0200 Subject: [PATCH] fix: doc string --- socketio/uwsgi_manager.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/socketio/uwsgi_manager.py b/socketio/uwsgi_manager.py index 7009ea9..df66c90 100644 --- a/socketio/uwsgi_manager.py +++ b/socketio/uwsgi_manager.py @@ -23,8 +23,10 @@ class UWSGIManager(PubSubManager): # pragma: no cover server = socketio.Server(client_manager=socketio.UWSGIManager()) - :param channel: The channel number on which the uWSGI Signal is propagated - accross processes. + :param url: The connection URL (only for compatibility). + To use the default signal number, use ``uwsgi:0``. + :param channel: The channel name on which the server sends and receives + notifications. :param write_only: If set ot ``True``, only initialize to emit events. The default of ``False`` initializes the class for emitting and receiving.