Hide exported logs statements in GH logs

This commit is contained in:
Mikhail f. Shiryaev 2024-09-10 12:18:53 +02:00
parent ac3cfef8c1
commit 8b1f21e7dd
No known key found for this signature in database
GPG Key ID: 4B02ED204C7D93F4

View File

@ -184,7 +184,12 @@ function setup_logs_replication
/^TTL /d /^TTL /d
') ')
echo -e "Creating remote destination table ${table}_${hash} with statement:\n${statement}" >&2 echo -e "Creating remote destination table ${table}_${hash} with statement:" >&2
echo "::group::${table}"
cat >&2 <<EOF
$statement
EOF
echo "::endgroup::"
echo "$statement" | clickhouse-client --database_replicated_initial_query_timeout_sec=10 \ echo "$statement" | clickhouse-client --database_replicated_initial_query_timeout_sec=10 \
--distributed_ddl_task_timeout=30 --distributed_ddl_output_mode=throw_only_active \ --distributed_ddl_task_timeout=30 --distributed_ddl_output_mode=throw_only_active \