From ed8cab6dc5067ff6e706a77743d77240c18739fa Mon Sep 17 00:00:00 2001 From: MarekWo Date: Tue, 27 Jan 2026 17:18:07 +0100 Subject: [PATCH] feat: Add repeater commands to slow commands list Added req_status, req_neighbours, and trace commands with 15s timeout as they communicate with repeaters and need time for responses. Co-Authored-By: Claude Opus 4.5 --- app/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/main.py b/app/main.py index 5ca98c1..14d61c3 100644 --- a/app/main.py +++ b/app/main.py @@ -22,6 +22,10 @@ SLOW_COMMANDS = { 'recv': 60, 'send': 15, 'send_msg': 15, + # Repeater commands + 'req_status': 15, + 'req_neighbours': 15, + 'trace': 15, } # Configure logging