Skip to content

Commit 868c6a9

Browse files
committed
disable minio webhooks we don't use
1 parent 7dc1549 commit 868c6a9

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

ci/jobs/scripts/clickhouse_proc.py

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -688,16 +688,17 @@ def run_fast_test(self, test=""):
688688
return exit_code == 0
689689

690690
def terminate(self):
691-
if self.minio_proc:
692-
# remove the webhook so it doesn't spam with errors once we stop ClickHouse
693-
Shell.check(
694-
"/mc admin config reset clickminio logger_webhook:ch_server_webhook",
695-
verbose=True,
696-
)
697-
Shell.check(
698-
"/mc admin config reset clickminio audit_webhook:ch_audit_webhook",
699-
verbose=True,
700-
)
691+
# NOTE (strtgbb): Log tables are disabled, we don't use them
692+
# if self.minio_proc:
693+
# # remove the webhook so it doesn't spam with errors once we stop ClickHouse
694+
# Shell.check(
695+
# "/mc admin config reset clickminio logger_webhook:ch_server_webhook",
696+
# verbose=True,
697+
# )
698+
# Shell.check(
699+
# "/mc admin config reset clickminio audit_webhook:ch_audit_webhook",
700+
# verbose=True,
701+
# )
701702

702703
self._flush_system_logs()
703704
print("Terminate ClickHouse processes")

0 commit comments

Comments
 (0)