Skip to content

Commit 671af64

Browse files
Increase alert thresholds for s390x to 6 hrs (#44)
Current runners are expected to have a bit of queue occasionally. Signed-off-by: Aleksei Nikiforov <[email protected]>
1 parent 18af16d commit 671af64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/check-long-queue-s390x.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const jsonData = dd.response.body;
99
const parsedData = JSON.parse(jsonData);
1010

1111
const highQueueItems = parsedData
12-
.filter(item => item.machine_type.includes(MACHINE_TYPE_FILTER) && item.avg_queue_s > 10800)
12+
.filter(item => item.machine_type.includes(MACHINE_TYPE_FILTER) && item.avg_queue_s > 21600)
1313
.map(item => ({ machine_type: item.machine_type, avg_queue_s: item.avg_queue_s }));
1414

1515
if (highQueueItems.length > 0) {

0 commit comments

Comments
 (0)