From 8964dab9d545333646fafad9aae0becd761a1045 Mon Sep 17 00:00:00 2001 From: Carlos Guerrero Date: Wed, 25 Dec 2024 07:17:31 -0500 Subject: [PATCH] Fixed broken gevent URL in documentation (#1427) --- 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