Skip to content

Commit d2ec542

Browse files
committed
short circuit noisy and unused log export steps
1 parent 6d8d6e3 commit d2ec542

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ci/jobs/scripts/clickhouse_proc.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1039,8 +1039,10 @@ def set_random_timezone():
10391039
# FIXME: the start_time must be preserved globally in ENV or something like that
10401040
# to get the same values in different DBs
10411041
# As a wild idea, it could be stored in a Info.check_start_timestamp
1042+
exit(0) # Note (strtgbb): We don't use log exports
10421043
res = ch.start_log_exports(check_start_time=Utils.timestamp())
10431044
elif command == "logs_export_stop":
1045+
exit(0) # Note (strtgbb): We don't use log exports
10441046
res = ch.stop_log_exports()
10451047
elif command == "start_minio":
10461048
param = sys.argv[2]

0 commit comments

Comments
 (0)