From af47a7ed23fa86497cb5acfb0d51d4b90ac971e6 Mon Sep 17 00:00:00 2001 From: Laurent Date: Fri, 2 Jan 2026 20:52:43 +0100 Subject: [PATCH] Minor spelling mistake --- api-customer/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-customer/app.py b/api-customer/app.py index 45bb3942..0675c969 100644 --- a/api-customer/app.py +++ b/api-customer/app.py @@ -32,7 +32,7 @@ message_controller = MessageController(app, auth_data, "https://192.168.15.120:8 def handle_message_received(topic:str, payload:str): try : print(payload, flush=True) - url = "https://192.168.15.120:1880/message/receive" + url = "https://192.168.15.125:1880/message/receive" requests.post(url, json=payload, verify=False) except Exception as e: print(e)