Skip to content
Snippets Groups Projects
Commit eb159264 authored by Josh Brooks's avatar Josh Brooks
Browse files

Fix grepper more

parent eb586015
No related branches found
No related tags found
2 merge requests!68Master merge,!44Feature/xx 4450/fix integration
...@@ -1356,7 +1356,8 @@ then ...@@ -1356,7 +1356,8 @@ then
diff -aruN results/server-errors.txt noerrors.txt diff -aruN results/server-errors.txt noerrors.txt
IGNOREMSG="GetRoundBufferInfo: Error received: rpc error: code = Unknown desc = round buffer is empty" IGNOREMSG="GetRoundBufferInfo: Error received: rpc error: code = Unknown desc = round buffer is empty"
IGNORESERVE="Failed to serve " 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 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 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 diff -aruN results/gateway-errors.txt noerrors.txt
echo "Checking backup files for equality..." echo "Checking backup files for equality..."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment