summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPulathaneli, Timur (tdp.) <tpulatha@ford.com>2017-06-22 10:08:13 -0400
committerPulathaneli, Timur (tdp.) <tpulatha@ford.com>2017-06-22 10:08:13 -0400
commitd20fb59f0008a92c4cf3833336d351c5556575b2 (patch)
treeb9eb2217ca3bcbc5c2fb52c9c355ebe7f37aa5a6
parent7335c326b4a2d2c95c462527f5b7dad2409b63c7 (diff)
downloadsdl_ios-d20fb59f0008a92c4cf3833336d351c5556575b2.tar.gz
Changed retry values as discussed in proposal
-rw-r--r--SmartDeviceLink/SDLIAPTransport.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLIAPTransport.m b/SmartDeviceLink/SDLIAPTransport.m
index ea0a0a890..88d380133 100644
--- a/SmartDeviceLink/SDLIAPTransport.m
+++ b/SmartDeviceLink/SDLIAPTransport.m
@@ -447,8 +447,8 @@ int const streamOpenTimeoutSeconds = 2;
}
- (double)retryDelay {
- const double min_value = 0.0;
- const double max_value = 10.0;
+ const double min_value = 1.5;
+ const double max_value = 9.5;
double range_length = max_value - min_value;
static double delay = 0;