Decrease the low bandwidth download timeout
am: 2229059114

Change-Id: I5b337e553ca4a229c71af7a710e01f805dd86846
diff --git a/common/constants.h b/common/constants.h
index 26773cf..fc15fce 100644
--- a/common/constants.h
+++ b/common/constants.h
@@ -164,9 +164,10 @@
 //
 // For non-official builds (e.g. typically built on a developer's
 // workstation and served via devserver) bump this since it takes time
-// for the workstation to generate the payload. For p2p, make this
-// relatively low since we want to fail fast.
-const int kDownloadLowSpeedTimeSeconds = 90;
+// for the workstation to generate the payload. For normal operation
+// and p2p, make this relatively low since we want to fail fast in
+// those cases.
+const int kDownloadLowSpeedTimeSeconds = 30;
 const int kDownloadDevModeLowSpeedTimeSeconds = 180;
 const int kDownloadP2PLowSpeedTimeSeconds = 60;