Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1623)

Unified Diff: appengine/findit/waterfall/test/wf_testcase.py

Issue 2526963002: [Findit] Implement retry within swarming_util.py when making server calls (Closed)
Patch Set: Addressing comments Rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/findit/waterfall/test/wf_testcase.py
diff --git a/appengine/findit/waterfall/test/wf_testcase.py b/appengine/findit/waterfall/test/wf_testcase.py
index bd2bbc48db3b6b69349f58482c76520574b1022d..e2e1ab9499b96744b99d1ae556b459565758b2df 100644
--- a/appengine/findit/waterfall/test/wf_testcase.py
+++ b/appengine/findit/waterfall/test/wf_testcase.py
@@ -93,6 +93,9 @@ _DEFAULT_SWARMING_SETTINGS = {
'iterations_to_rerun': 10,
'get_swarming_task_id_timeout_seconds': 5 * 60, # 5 minutes.
'get_swarming_task_id_wait_seconds': 10,
+ 'server_retry_timeout_hours': 2,
+ 'maximum_server_contact_retry_interval_seconds': 5 * 60, # 5 minutes.
+ 'should_retry_server': False, # No retry for unit testing.
}

Powered by Google App Engine
This is Rietveld 408576698