From 10491aa6b0e73660202a41b27643198881f8b629 Mon Sep 17 00:00:00 2001 From: "Richard T. Carback III" <rick.carback@gmail.com> Date: Fri, 9 Sep 2022 17:14:19 +0000 Subject: [PATCH] Suppress RequestClientKey errors --- basice2e/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basice2e/run.sh b/basice2e/run.sh index a0c88e7..bc5428e 100755 --- a/basice2e/run.sh +++ b/basice2e/run.sh @@ -1258,7 +1258,7 @@ then #cat $CLIENTOUT/* | strings | grep -ae "ERROR" -e "FATAL" > results/client-errors || true #diff -ruN results/client-errors.txt noerrors.txt - cat $SERVERLOGS/server-*.log | grep -a "ERROR" | grep -a -v "context" | grep -av "metrics" | grep -av "database" > results/server-errors.txt || true + cat $SERVERLOGS/server-*.log | grep -a "ERROR" | grep -a -v "context" | grep -av "metrics" | grep -av "database" | grep -av RequestClientKey > results/server-errors.txt || true cat $SERVERLOGS/server-*.log | grep -a "FATAL" | grep -a -v "context" | grep -av "transport is closing" | grep -av "database" >> results/server-errors.txt || true diff -aruN results/server-errors.txt noerrors.txt IGNOREMSG="GetRoundBufferInfo: Error received: rpc error: code = Unknown desc = round buffer is empty" -- GitLab