diff --git a/ChangeLog.md b/ChangeLog.md index 746063da..bf5854f8 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,6 @@ # v2.5.24 BUG FIXES -- fix corner cases object disk parse endpoint for S3, to avoid wrong .amazonaws.amazonaws.com suffix +- fix corner cases object disk parse endpoint for S3, to avoid wrong `.amazonaws.amazonaws.com` suffix # v2.5.23 BUG FIXES diff --git a/test/testflows/clickhouse_backup/tests/config_rbac.py b/test/testflows/clickhouse_backup/tests/config_rbac.py index 28c93172..8686ee29 100644 --- a/test/testflows/clickhouse_backup/tests/config_rbac.py +++ b/test/testflows/clickhouse_backup/tests/config_rbac.py @@ -39,7 +39,9 @@ def configs_backup_restore(self): fail(f"{filename} not found, why you change file structure?") with When(f"I create backup"): - backup.cmd(f"clickhouse-backup create --configs {table_name}") + r = backup.cmd(f"clickhouse-backup create --env=LOG_LEVEL=debug --configs {table_name}") + with Then("I expect clickhouse-backup to attempt create configs"): + assert "done createBackupConfigs" in r.output, error() with When("I remove existing configuration to restore it later"): for local_config_dir in ("configs/clickhouse", "configs/clickhouse1"): @@ -52,9 +54,9 @@ def configs_backup_restore(self): ch_node.cmd(f"truncate -s 0 /etc/clickhouse-server/{filename}") with Then("I restore from the backup and restart"): - r = backup.cmd(f"clickhouse-backup restore --configs {table_name}", exitcode=None) + r = backup.cmd(f"clickhouse-backup restore --env=LOG_LEVEL=debug --configs {table_name}", exitcode=None) - with Then("I expect ch-backup to attempt restart ch-server"): + with Then("I expect clickhouse-backup to attempt restart clickhouse-server"): assert "restart clickhouse-server" in r.output, error() with And("I restart clickhouse, cause clickhouse-backup doesn't have access to systemd"):