From cb58f1d76238bdebd4b503764fcee53ff76bbba1 Mon Sep 17 00:00:00 2001 From: jknapp Date: Sun, 9 Mar 2025 11:07:21 -0700 Subject: [PATCH] Switch reload from post to get --- haproxy_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haproxy_manager.py b/haproxy_manager.py index 0d018f9..7bd9736 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=['GET']) def reload_haproxy(): if is_process_running('haproxy'): subprocess.run(['echo', '"reload"', '|', 'socat', 'stdio', '/tmp/haproxy-cli'])