From cd33d150efe318226b3b16a7e85baed11c8eb7e3 Mon Sep 17 00:00:00 2001 From: Srikanth Ramamurthy Date: Wed, 6 Oct 2021 19:06:25 +0000 Subject: [PATCH] LU-17735 tests: extend health check to avoid spurious failures Increase network check timeout to avoid spurious failures of tests like sanity test 7b. 5 seconds is too short in certain environments. Signed-off-by: Srikanth Ramamurthy Change-Id: Iea49f4f66efbfe0afa56ec81eadea6d792cab55f Reviewed-on: https://review.whamcloud.com/c/fs/lustre-release/+/54765 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Andreas Dilger Reviewed-by: Timothy Day Reviewed-by: Oleg Drokin --- lustre/tests/test-framework.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index 44d92cf..7c4b02e 100755 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -8281,7 +8281,7 @@ check_node_health() { # *clearly* the network is working if get_param returned something. if (( $(grep -c catastro $health) != $(wc -w <<< ${nodes//,/ }) )); then for node in ${nodes//,/ }; do - check_network $node 5 + check_network $node 60 done fi rm -f $health -- 1.8.3.1