From 746659f64ee56c8e9f22ac8cf565ee1d8f615c58 Mon Sep 17 00:00:00 2001 From: Carlos Guerrero Date: Tue, 24 Dec 2024 22:01:08 -0500 Subject: [PATCH] docs: fix broken gevent url --- docs/intro.rst | 2 +- docs/server.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/intro.rst b/docs/intro.rst index b05e072..9bb301d 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -189,7 +189,7 @@ Server Features - Can be hosted on any `WSGI `_ or `ASGI `_ web server including `Gunicorn `_, `Uvicorn `_, - `eventlet `_ and `gevent `_. + `eventlet `_ and `gevent `_. - Can be integrated with WSGI applications written in frameworks such as Flask, Django, etc. - Can be integrated with `aiohttp `_, diff --git a/docs/server.rst b/docs/server.rst index ed15ed3..eb91c29 100644 --- a/docs/server.rst +++ b/docs/server.rst @@ -838,7 +838,7 @@ Gevent When a multi-threaded web server is unable to satisfy the concurrency and scalability requirements of the application, an option to try is -`Gevent `_. Gevent is a coroutine-based concurrency library +`Gevent `_. Gevent is a coroutine-based concurrency library based on greenlets, which are significantly lighter than threads. Instances of class ``socketio.Server`` will automatically use Gevent if the