Skip to content

Commit a672123

Browse files
Add try on client to test, temporary fix
1 parent ae071e0 commit a672123

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests_and_examples/run_query_tests.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,11 @@ def compare_result(self, query_type, test, result):
250250
continue
251251

252252
if value != result[key]:
253+
time.sleep(self.sleep_time * 3)
254+
result2 = self.execute_query(query_type, test)
255+
if value == result2[key]:
256+
print " Passed at second try"
257+
continue
253258
self.num_fails += 1
254259
self.failed_tests.append(test['name'])
255260

0 commit comments

Comments
 (0)