We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4283e0c + 68b2761 commit 50ef47fCopy full SHA for 50ef47f
2 files changed
VERSION
@@ -1 +1 @@
1
-3.7.74
+3.7.75
lib/gooddata/rest/connection.rb
@@ -65,7 +65,7 @@ class Connection
65
]
66
67
RETRY_TIME_INITIAL_VALUE = 1
68
- RETRY_TIME_COEFFICIENT = 1.5
+ RETRY_TIME_COEFFICIENT = 2
69
RETRYABLE_ERRORS << Net::ReadTimeout if Net.const_defined?(:ReadTimeout)
70
71
RETRYABLE_ERRORS << OpenSSL::SSL::SSLErrorWaitReadable if OpenSSL::SSL.const_defined?(:SSLErrorWaitReadable)
@@ -94,7 +94,7 @@ def generate_string(length = ID_LENGTH)
94
95
# Retry block if exception thrown
96
def retryable(options = {}, &_block)
97
- opts = { :tries => 17, :on => RETRYABLE_ERRORS }.merge(options)
+ opts = { :tries => 12, :on => RETRYABLE_ERRORS }.merge(options)
98
99
retry_exception = opts[:on]
100
retries = opts[:tries]
0 commit comments