diff options
| author | 2009-07-07 11:14:21 -0700 | |
|---|---|---|
| committer | 2009-07-07 11:42:31 -0700 | |
| commit | 04f0b05ea04a4a13d6a15b36eaa27b2ec364f313 (patch) | |
| tree | 05b9974a3deb55a132baa385d5f63a836f22d3c0 | |
| parent | 790a604b9c32647711599710e21f0f00eb3d839c (diff) | |
Add a Gservices setting for how many times we should retry before discarding an uphill operation
| -rw-r--r-- | core/java/android/provider/Settings.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 7f63bff67da5..0d27e1ec1ec4 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -2671,6 +2671,12 @@ public final class Settings { public static final String GMAIL_DISCARD_ERROR_UPHILL_OP = "gmail_discard_error_uphill_op"; /** + * Controls how many attempts Gmail will try to upload an uphill operations before it + * abandons the operation. Defaults to 20. + */ + public static final String GMAIL_NUM_RETRY_UPHILL_OP = "gmail_discard_error_uphill_op"; + + /** * the transcoder URL for mobile devices. */ public static final String TRANSCODER_URL = "mobile_transcoder_url"; |