From 8e96afca9ecba2ff71691f53b0408c27e34ae5e7 Mon Sep 17 00:00:00 2001 From: pokeeffe-molecula Date: Tue, 22 Feb 2022 22:15:14 -0600 Subject: [PATCH] filter out DEBUG from restore --- qa/scripts/perf/able/ableTest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/scripts/perf/able/ableTest.sh b/qa/scripts/perf/able/ableTest.sh index 4b26a09b5..29b39339a 100755 --- a/qa/scripts/perf/able/ableTest.sh +++ b/qa/scripts/perf/able/ableTest.sh @@ -33,7 +33,7 @@ fi # untar and restore data data echo "Untarring and restoring data" -ssh -A -i ~/.ssh/gitlab-featurebase-ci.pem -o "StrictHostKeyChecking no" ec2-user@${INGESTNODE0} "cd /data; tar -xf perf-able-seg.tar.xz; featurebase restore --host http://${DATANODE0}:10101 -s /data/backup" +ssh -A -i ~/.ssh/gitlab-featurebase-ci.pem -o "StrictHostKeyChecking no" ec2-user@${INGESTNODE0} "cd /data; tar -xf perf-able-seg.tar.xz; featurebase restore --host http://${DATANODE0}:10101 -s /data/data/backup | grep -v 'DEBUG'" if (( $? != 0 )) then echo "Untarring and restoring failed"