Skip to content

Commit 4ed6adc

Browse files
committed
make test more verbose
1 parent 7eb87a6 commit 4ed6adc

File tree

1 file changed

+3
-1
lines changed
  • release_tester/arangodb

1 file changed

+3
-1
lines changed

release_tester/arangodb/sh.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,12 +245,14 @@ def hotbackup_create_nonbackup_data(self, suff=""):
245245
if (!arango.isConnected()) {{
246246
throw new Error('connecting the database failed');
247247
}}
248+
print("connection is established, creating this_collection_will_not_be_backed_up{suff}");
248249
db._create("this_collection_will_not_be_backed_up{suff}");
250+
print("now saving a document tot this collection");
249251
db.this_collection_will_not_be_backed_up{suff}.save(
250252
{{"this": "document will be gone"}});
251253
"""
252254
logging.debug("script to be executed: " + str(js_script_string) + str(self.connect_instance))
253-
res = self.run_command(["create volatile data", js_script_string], True) # self.cfg.verbose)
255+
res = self.run_command(["create volatile data", js_script_string], True, progressive_timeout=900) # self.cfg.verbose)
254256
logging.debug("data create result: " + str(res))
255257

256258
if not res:

0 commit comments

Comments
 (0)