Adjust threshold to cope with new ETA calculation mechanism

This commit is contained in:
Andrew Wood
2023-07-16 21:16:02 +01:00
parent 4fddf40436
commit 3403ebd857
+2 -2
View File
@@ -13,8 +13,8 @@ NUM=`tr '\r' '\n' < $TMP1 | tr -d ' ' | sed '/^$/d' | sort | uniq | wc -l | tr -
#
test $NUM -gt 3 || exit 1
# 8 or more - not OK, since even on a heavily loaded system that's too long.
# 12 or more - not OK, since even on a heavily loaded system that's too long.
#
test $NUM -lt 8
test $NUM -lt 12
# EOF