From 227a3c3840e69cdb0bdbcd4361b757dfc816b645 Mon Sep 17 00:00:00 2001
From: ericm <ericm>
Date: Wed, 12 Mar 2008 20:07:58 +0000
Subject: [PATCH] branch: b1_6 only ignore error code of 67a, not 67b. b=13721
 r=nathan

---
 lustre/tests/replay-single.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lustre/tests/replay-single.sh b/lustre/tests/replay-single.sh
index d50502ca1b..bf880e1302 100755
--- a/lustre/tests/replay-single.sh
+++ b/lustre/tests/replay-single.sh
@@ -1524,7 +1524,7 @@ test_67a() #bug 3055
     CONN2=$(awk '/_connect/ {total+=$2} END {print total}' $LPROC/osc/*/stats)
     ATTEMPTS=$(($CONN2 - $CONN1))
     echo "$ATTEMPTS osc reconnect attemps on gradual slow"
-    [ $ATTEMPTS -gt 0 ] && error "AT should have prevented reconnect"
+    [ $ATTEMPTS -gt 0 ] && error_ignore 13721 "AT should have prevented reconnect"
     return 0
 }
 run_test 67a "AT: verify slow request processing doesn't induce reconnects"
@@ -1552,7 +1552,7 @@ test_67b() #bug 3055
     CONN3=$(awk '/_connect/ {total+=$2} END {print total}' $LPROC/osc/*/stats)
     ATTEMPTS=$(($CONN3 - $CONN2))
     echo "$ATTEMPTS osc reconnect attemps on 2nd slow"
-    [ $ATTEMPTS -gt 0 ] && error_ignore 13721 "AT should have prevented reconnect"
+    [ $ATTEMPTS -gt 0 ] && error "AT should have prevented reconnect"
     return 0
 }
 run_test 67b "AT: verify instant slowdown doesn't induce reconnects"
-- 
GitLab