From e549173a317aeb5da7b1de90c3c63730c3f79f9c Mon Sep 17 00:00:00 2001 From: Tero Paloheimo Date: Sat, 23 Nov 2024 19:30:58 +0200 Subject: [PATCH] docs: fix port number in asyncio server examples The port number in the docstring is incorrect after the examples were updated. --- examples/http_server_asyncio.py | 4 ++-- examples/http_server_asyncio_rx.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/http_server_asyncio.py b/examples/http_server_asyncio.py index b253044..b8b8dd9 100644 --- a/examples/http_server_asyncio.py +++ b/examples/http_server_asyncio.py @@ -3,8 +3,8 @@ Executes get data for sensors in the background. Endpoints: - http://0.0.0.0:5000/data - http://0.0.0.0:5000/data/{mac} + http://0.0.0.0:5500/data + http://0.0.0.0:5500/data/{mac} Requires: asyncio - Python 3.5 diff --git a/examples/http_server_asyncio_rx.py b/examples/http_server_asyncio_rx.py index 241eea9..efc389a 100644 --- a/examples/http_server_asyncio_rx.py +++ b/examples/http_server_asyncio_rx.py @@ -3,8 +3,8 @@ Executes get data for sensors in the background. Endpoints: - http://0.0.0.0:5000/data - http://0.0.0.0:5000/data/{mac} + http://0.0.0.0:5500/data + http://0.0.0.0:5500/data/{mac} Requires: asyncio - Python 3.5