From a17a3e1de13dedb33586c994a360628b167c34f0 Mon Sep 17 00:00:00 2001 From: Antonio Andelic Date: Fri, 23 Sep 2022 08:23:57 +0000 Subject: [PATCH 1/2] Ignore Keeper hardware errors --- docker/test/stress/run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/test/stress/run.sh b/docker/test/stress/run.sh index 25bc64261f3..bb3312bd369 100755 --- a/docker/test/stress/run.sh +++ b/docker/test/stress/run.sh @@ -454,6 +454,7 @@ else -e "This engine is deprecated and is not supported in transactions" \ -e "[Queue = DB::MergeMutateRuntimeQueue]: Code: 235. DB::Exception: Part" \ -e "The set of parts restored in place of" \ + -e "ReplicatedMergeTreeAttachThread.*Initialization failed. Error" \ /var/log/clickhouse-server/clickhouse-server.backward.clean.log | zgrep -Fa "" > /test_output/bc_check_error_messages.txt \ && echo -e 'Backward compatibility check: Error message in clickhouse-server.log (see bc_check_error_messages.txt)\tFAIL' >> /test_output/test_results.tsv \ || echo -e 'Backward compatibility check: No Error messages in clickhouse-server.log\tOK' >> /test_output/test_results.tsv From 6f4a636e8fafe743caeee0022ef02532c1954810 Mon Sep 17 00:00:00 2001 From: Antonio Andelic Date: Mon, 26 Sep 2022 11:21:53 +0000 Subject: [PATCH 2/2] Remove wildcard --- docker/test/stress/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/test/stress/run.sh b/docker/test/stress/run.sh index d3554923eca..e787ff2e191 100755 --- a/docker/test/stress/run.sh +++ b/docker/test/stress/run.sh @@ -454,7 +454,7 @@ else -e "This engine is deprecated and is not supported in transactions" \ -e "[Queue = DB::MergeMutateRuntimeQueue]: Code: 235. DB::Exception: Part" \ -e "The set of parts restored in place of" \ - -e "ReplicatedMergeTreeAttachThread.*Initialization failed. Error" \ + -e "(ReplicatedMergeTreeAttachThread): Initialization failed. Error" \ /var/log/clickhouse-server/clickhouse-server.backward.clean.log | zgrep -Fa "" > /test_output/bc_check_error_messages.txt \ && echo -e 'Backward compatibility check: Error message in clickhouse-server.log (see bc_check_error_messages.txt)\tFAIL' >> /test_output/test_results.tsv \ || echo -e 'Backward compatibility check: No Error messages in clickhouse-server.log\tOK' >> /test_output/test_results.tsv