Merge pull request #46520 from ClickHouse/rollout-42891

Rollback unnecessary sync because of checking exit code
This commit is contained in:
Alexey Milovidov 2023-02-17 15:13:06 +03:00 committed by GitHub
commit 937bd6dd4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -380,11 +380,6 @@ class ClickhouseIntegrationTestsRunner:
)
def _compress_logs(self, dir, relpaths, result_path):
# We execute sync in advance to have all files written after containers
# are finished or killed
subprocess.check_call( # STYLE_CHECK_ALLOW_SUBPROCESS_CHECK_CALL
"sync", shell=True
)
retcode = subprocess.call( # STYLE_CHECK_ALLOW_SUBPROCESS_CHECK_CALL
"tar czf {} -C {} {}".format(result_path, dir, " ".join(relpaths)),
shell=True,