File tree 1 file changed +6
-4
lines changed
release_tester/arangodb/starter/deployments
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -917,18 +917,19 @@ def clear_data_impl(self):
917
917
assert starter .arangosh , "check: this starter doesn't have an arangosh!"
918
918
frontend_found = True
919
919
arangosh = starter .arangosh
920
- for db_name , one_shard , count_offset in self .makedata_databases ():
920
+ for db_name , one_shard , count_offset in self .makedata_databases ()[::- 1 ]:
921
+ print (db_name , one_shard , count_offset )
921
922
try :
922
- print (count_offset )
923
923
starter .arangosh .clear_test_data (
924
924
self .name ,
925
925
starter .supports_foxx_tests ,
926
926
args = ["--countOffset" , str (count_offset )],
927
927
database_name = db_name ,
928
928
one_shard = one_shard ,
929
929
)
930
- break
931
930
except CliExecutionException as exc :
931
+ print ("cleardata failed!" )
932
+ print (exc )
932
933
if not self .cfg .verbose :
933
934
print (exc .execution_result [1 ])
934
935
self .ask_continue_or_exit (
@@ -937,7 +938,8 @@ def clear_data_impl(self):
937
938
False ,
938
939
exc ,
939
940
)
940
- return
941
+ print ("Done cleanup" )
942
+ return
941
943
if not frontend_found :
942
944
raise Exception ("no frontend found." )
943
945
You can’t perform that action at this time.
0 commit comments