Index: Src/GoogleApis/Apis/Http/ConfigurableMessageHandler.cs =================================================================== --- a/Src/GoogleApis/Apis/Http/ConfigurableMessageHandler.cs +++ b/Src/GoogleApis/Apis/Http/ConfigurableMessageHandler.cs @@ -84,14 +84,14 @@ #endregion - /// Number of tries. Default is 10. - private int numTries = 10; + /// Number of tries. Default is 3. + private int numTries = 3; /// /// Gets or sets the number of tries that will be allowed to execute. Retries occur as a result of either /// or which handles the /// abnormal Http response or exception, before being terminated. - /// Set 1 for not retrying requests. The default value is 10". + /// Set 1 for not retrying requests. The default value is 3". /// public int NumTries { @@ -100,7 +100,7 @@ { if (value > MaxAllowedNumTries || value < 1) { - throw new ArgumentOutOfRangeException("NumRetries"); + throw new ArgumentOutOfRangeException("NumTries"); } numTries = value; }