summaryrefslogtreecommitdiff
path: root/doc/modules/websocket.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/modules/websocket.rst')
-rw-r--r--doc/modules/websocket.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/modules/websocket.rst b/doc/modules/websocket.rst
index b42a25f..9a94fda 100644
--- a/doc/modules/websocket.rst
+++ b/doc/modules/websocket.rst
@@ -18,6 +18,11 @@ To create a websocket server, simply decorate a handler method with
wsgi.server(eventlet.listen(('', 8090)), hello_world)
+.. note::
+
+ Please see graceful termination warning in :func:`~eventlet.wsgi.server`
+ documentation
+
You can find a slightly more elaborate version of this code in the file
``examples/websocket.py``.