Skip to content

Commit fb0c7b7

Browse files
authored
Update test.py
1 parent 4b3d973 commit fb0c7b7

File tree

1 file changed

+9
-0
lines changed
  • tests/integration/test_backup_restore_azure_blob_storage

1 file changed

+9
-0
lines changed

tests/integration/test_backup_restore_azure_blob_storage/test.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,15 @@ def cluster():
8989
cluster.shutdown()
9090

9191

92+
backup_id_counter = 0
93+
94+
95+
def new_backup_name():
96+
global backup_id_counter
97+
backup_id_counter += 1
98+
return f"backup{backup_id_counter}"
99+
100+
92101
def azure_query(
93102
node, query, expect_error=False, try_num=10, settings={}, query_on_retry=None
94103
):

0 commit comments

Comments
 (0)