From e88ce75a3f1438397d5a1b9d5efc903fc17b2aa6 Mon Sep 17 00:00:00 2001 From: Waldek Date: Wed, 7 Apr 2021 06:33:54 +0200 Subject: [PATCH] Timeout typical TOT 180 sec for missing END of TX info --- monitor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/monitor.py b/monitor.py index 8fd63b5..a5bff84 100644 --- a/monitor.py +++ b/monitor.py @@ -789,7 +789,8 @@ def process_message(_bmessage): now = datetime.datetime.now() durations = now - then duration_in_s = durations.total_seconds() - if dur=="0" and row[3]=="START" and duration_in_s < 260: + # Timeout typical TOT 180 sec for missing END of TX info + if dur=="0" and row[3]=="START" and duration_in_s < 180: durtx='TX-ing' else: if dur=="0":