We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de2b55b commit 0c81278Copy full SHA for 0c81278
scripts/soak-test.sh
@@ -437,8 +437,9 @@ fi
437
MAX_LATENCY=$(awk -F, 'NR>1 && $2!="index_repository" { if ($3>max) max=$3 } END { print max+0 }' "$LATENCY_CSV")
438
MAX_INDEX=$(awk -F, 'NR>1 && $2=="index_repository" { if ($3>max) max=$3 } END { print max+0 }' "$LATENCY_CSV")
439
echo "Max query latency: ${MAX_LATENCY}ms (index: ${MAX_INDEX}ms)" | tee -a "$SUMMARY"
440
-if [ "${MAX_LATENCY:-0}" -gt 10000 ] 2>/dev/null; then
441
- echo "FAIL: max query latency ${MAX_LATENCY}ms > 10s" | tee -a "$SUMMARY"
+# 60s threshold — MSYS2/Wine adds significant overhead to all operations
+if [ "${MAX_LATENCY:-0}" -gt 60000 ] 2>/dev/null; then
442
+ echo "FAIL: max query latency ${MAX_LATENCY}ms > 60s" | tee -a "$SUMMARY"
443
PASS=false
444
fi
445
0 commit comments