Miguel Grinberg
6 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
2 changed files with
8 additions and
0 deletions
-
socketio/asyncio_server.py
-
socketio/server.py
|
|
@ -58,6 +58,10 @@ class AsyncServer(server.Server): |
|
|
|
disable CORS handling. |
|
|
|
:param cors_credentials: Whether credentials (cookies, authentication) are |
|
|
|
allowed in requests to this server. |
|
|
|
:param monitor_clients: If set to ``True``, a background task will ensure |
|
|
|
inactive clients are closed. Set to ``False`` to |
|
|
|
disable the monitoring task (not recommended). The |
|
|
|
default is ``True``. |
|
|
|
:param engineio_logger: To enable Engine.IO logging set to ``True`` or pass |
|
|
|
a logger object to use. To disable logging set to |
|
|
|
``False``. |
|
|
|
|
|
@ -86,6 +86,10 @@ class Server(object): |
|
|
|
:param cors_credentials: Whether credentials (cookies, authentication) are |
|
|
|
allowed in requests to this server. The default is |
|
|
|
``True``. |
|
|
|
:param monitor_clients: If set to ``True``, a background task will ensure |
|
|
|
inactive clients are closed. Set to ``False`` to |
|
|
|
disable the monitoring task (not recommended). The |
|
|
|
default is ``True``. |
|
|
|
:param engineio_logger: To enable Engine.IO logging set to ``True`` or pass |
|
|
|
a logger object to use. To disable logging set to |
|
|
|
``False``. The default is ``False``. |
|
|
|