From 2492eab70803e8b5612e70ab2750a965557a6b10 Mon Sep 17 00:00:00 2001 From: jknapp Date: Sun, 9 Mar 2025 11:02:20 -0700 Subject: [PATCH] Fix missing '/' --- haproxy_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haproxy_manager.py b/haproxy_manager.py index 9b204c7..0d018f9 100644 --- a/haproxy_manager.py +++ b/haproxy_manager.py @@ -151,7 +151,7 @@ def regenerate_conf(): 'error': str(e) }), 500 -@app.route('api/reload', methods=['POST']) +@app.route('/api/reload', methods=['POST']) def reload_haproxy(): if is_process_running('haproxy'): subprocess.run(['echo', '"reload"', '|', 'socat', 'stdio', '/tmp/haproxy-cli'])