@@ -179,7 +179,8 @@ def fetch_tokenmap(medusaconfig, backup_name, bucket_name, prefix):
179179
180180@cli .command (name = 'list-backups' )
181181@click .option ('--show-all/--no-show-all' , default = False , help = "List all backups in the bucket" )
182- @click .option ('--bucket-name' , help = 'Explicit bucket name to over-ride the one from config' , required = False , default = None )
182+ @click .option ('--bucket-name' ,
183+ help = 'Explicit bucket name to over-ride the one from config' , required = False , default = None )
183184@click .option ('--prefix' , help = 'Path prefix in multi-tenant buckets' , required = False , default = None )
184185@pass_MedusaConfig
185186def list_backups (medusaconfig , show_all , bucket_name , prefix ):
@@ -198,7 +199,8 @@ def list_backups(medusaconfig, show_all, bucket_name, prefix):
198199 multiple = True , default = {})
199200@click .option ('--ignore-system-keyspaces' , help = 'Do not download cassandra system keyspaces' , required = True ,
200201 is_flag = True , default = False )
201- @click .option ('--bucket-name' , help = 'Explicit bucket name to over-ride the one from config' , required = False , default = None )
202+ @click .option ('--bucket-name' ,
203+ help = 'Explicit bucket name to over-ride the one from config' , required = False , default = None )
202204@click .option ('--prefix' , help = 'Path prefix in multi-tenant buckets' , required = False , default = None )
203205@pass_MedusaConfig
204206def download (medusaconfig , backup_name , download_destination , keyspaces , tables , ignore_system_keyspaces , bucket_name ,
@@ -231,7 +233,8 @@ def download(medusaconfig, backup_name, download_destination, keyspaces, tables,
231233@click .option ('--version-target' , help = 'Target Cassandra version' , required = False , default = "3.11.9" )
232234@click .option ('--ignore-racks' , help = 'Disable matching nodes based on rack topology' , required = False , default = False ,
233235 is_flag = True )
234- @click .option ('--bucket-name' , help = 'Explicit bucket name to over-ride the one from config' , required = False , default = None )
236+ @click .option ('--bucket-name' ,
237+ help = 'Explicit bucket name to over-ride the one from config' , required = False , default = None )
235238@click .option ('--prefix' , help = 'Path prefix in multi-tenant buckets' , required = False , default = None )
236239@pass_MedusaConfig
237240def restore_cluster (medusaconfig , backup_name , seed_target , temp_dir , host_list , keep_auth , bypass_checks ,
@@ -276,7 +279,8 @@ def restore_cluster(medusaconfig, backup_name, seed_target, temp_dir, host_list,
276279@click .option ('--use-sstableloader' , help = 'Use the sstableloader to load the backup into the cluster' ,
277280 default = False , is_flag = True )
278281@click .option ('--version-target' , help = 'Target Cassandra version' , required = False , default = "3.11.9" )
279- @click .option ('--bucket-name' , help = 'Explicit bucket name to over-ride the one from config' , required = False , default = None )
282+ @click .option ('--bucket-name' ,
283+ help = 'Explicit bucket name to over-ride the one from config' , required = False , default = None )
280284@click .option ('--prefix' , help = 'Path prefix in multi-tenant buckets' , required = False , default = None )
281285@pass_MedusaConfig
282286def restore_node (medusaconfig , temp_dir , backup_name , in_place , keep_auth , seeds , verify , keyspaces , tables ,
0 commit comments