Merge pull request #44867 from ClickHouse/fail-performance-on-report-error

Fix non-detected Errors in performance tests message
This commit is contained in:
Kruglov Pavel 2023-01-04 14:27:37 +01:00 committed by GitHub
commit ac66dcfbe4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -236,7 +236,7 @@ if __name__ == "__main__":
# TODO: Remove me, always green mode for the first time, unless errors
status = "success"
if "errors" in message:
if "errors" in message.lower():
status = "failure"
# TODO: Remove until here
except Exception: