Merge branch '2.2.x'

This commit is contained in:
David Lord 2023-04-15 12:30:20 -07:00
commit cfa863c357
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
10 changed files with 39 additions and 20 deletions

View file

@ -54,7 +54,7 @@ its ``wsgi.server``, as well as your app or app factory.
from hello import create_app
app = create_app()
wsgi.server(eventlet.listen(("127.0.0.1", 8000), app)
wsgi.server(eventlet.listen(("127.0.0.1", 8000)), app)
.. code-block:: text