From 8d8a399f337b70a95826346cf9f2caa93abcfb98 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Mon, 7 Feb 2022 04:24:24 +0000 Subject: [PATCH] Increase Trotec usage threshold --- apiserver/apiserver/api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apiserver/apiserver/api/views.py b/apiserver/apiserver/api/views.py index 64d9a9a..af31848 100644 --- a/apiserver/apiserver/api/views.py +++ b/apiserver/apiserver/api/views.py @@ -671,7 +671,7 @@ class StatsViewSet(viewsets.ViewSet, List): logging.debug('Device %s data: %s', device, data) - if device == 'TROTECS300' and data and int(data) > 3: + if device == 'TROTECS300' and data and int(data) > 4: should_count = True else: should_count = False