summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStas Negara <snegara@google.com>2015-01-09 17:09:36 -0800
committerStas Negara <snegara@google.com>2015-02-06 13:06:20 -0800
commit67dde56a3ccf62807eafecb955d5e89bb65895fa (patch)
tree447220a515ed41dc66097cdd9054fc104e800e2f
parent9e878a4fdc2a6a347daa56721121c3938b8fae0f (diff)
downloadtesting-67dde56a3ccf62807eafecb955d5e89bb65895fa.tar.gz
Increased the dynamic timeout to 30 minutes.
Change-Id: Idd7d75a615dd09f59c29cc1629989103e5202d82
-rw-r--r--src/com/google/gct/testing/CloudResultsAdapter.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/google/gct/testing/CloudResultsAdapter.java b/src/com/google/gct/testing/CloudResultsAdapter.java
index 6b82934..a04909b 100644
--- a/src/com/google/gct/testing/CloudResultsAdapter.java
+++ b/src/com/google/gct/testing/CloudResultsAdapter.java
@@ -142,7 +142,8 @@ public class CloudResultsAdapter {
class PollingTicker implements Runnable {
private static final long INITIAL_TIMEOUT = 10 * 60 * 1000; // 10 minutes
- private static final long DYNAMIC_TIMEOUT = 5 * 60 * 1000; // 5 minutes
+ //TODO: Reduce back to 5 minutes after we get incremental results for test execution.
+ private static final long DYNAMIC_TIMEOUT = 30 * 60 * 1000; // 30 minutes
private static final int POLLING_INTERVAL = 3 * 1000; // 3 seconds
private long stopTime;