Skip to content

Commit

Permalink
documentation updates
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Aug 2, 2019
1 parent 6848bed commit d23581e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions socketio/asyncio_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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``.
Expand Down
4 changes: 4 additions & 0 deletions socketio/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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``.
Expand Down

0 comments on commit d23581e

Please sign in to comment.