From eb15926400bce77c36565a1754e84ce58c4ecddf Mon Sep 17 00:00:00 2001 From: joshemb <josh@elixxir.io> Date: Fri, 27 Jan 2023 10:04:34 -0800 Subject: [PATCH] Fix grepper more --- basice2e/run.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/basice2e/run.sh b/basice2e/run.sh index c9ae982..6b6b9d3 100755 --- a/basice2e/run.sh +++ b/basice2e/run.sh @@ -1355,8 +1355,9 @@ then 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" - IGNORESERVE="Failed to serve" - cat $GATEWAYLOGS/*.log | grep -a "ERROR" | grep -av "context" | grep -av "certificate" | grep -av "Failed to read key" | grep -av "$IGNOREMSG" | grep -av IGNORESERVE | grep -av "Failed to start HTTPS" > results/gateway-errors.txt || true + IGNORESERVE="Failed to serve " + IGNORESTART="Failed to start " + cat $GATEWAYLOGS/*.log | grep -a "ERROR" | grep -av "context" | grep -av "certificate" | grep -av "Failed to read key" | grep -av "$IGNOREMSG" | grep -av "$IGNORESERVE" | grep -av "$IGNORESTART" > results/gateway-errors.txt || true cat $GATEWAYLOGS/*.log | grep -a "FATAL" | grep -av "context" | grep -av "transport is closing" >> results/gateway-errors.txt || true diff -aruN results/gateway-errors.txt noerrors.txt echo "Checking backup files for equality..." -- GitLab