From 16a4c66d256672b43dcfc34844c596718b26d052 Mon Sep 17 00:00:00 2001 From: Simo Lin Date: Thu, 7 Aug 2025 07:15:38 -0700 Subject: [PATCH] [router] update pd router ci summary step with new threshold (#8916) --- .github/workflows/pr-test-pd-router.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-test-pd-router.yml b/.github/workflows/pr-test-pd-router.yml index a25d739b0..c7fa1e666 100644 --- a/.github/workflows/pr-test-pd-router.yml +++ b/.github/workflows/pr-test-pd-router.yml @@ -529,7 +529,7 @@ jobs: fi fi if [ "$e2e_latency" != "N/A" ] && [ "$e2e_latency" != "null" ]; then - if (( $(echo "$e2e_latency > 8.0" | bc -l 2>/dev/null || echo "0") )); then + if (( $(echo "$e2e_latency > 24.0" | bc -l 2>/dev/null || echo "0") )); then validation_status="❌" fi fi @@ -539,7 +539,7 @@ jobs: fi fi if [ "$output_throughput" != "N/A" ] && [ "$output_throughput" != "null" ]; then - if (( $(echo "$output_throughput < 100" | bc -l 2>/dev/null || echo "0") )); then + if (( $(echo "$output_throughput < 90" | bc -l 2>/dev/null || echo "0") )); then validation_status="❌" fi fi