faraday-retry 2.3.0 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/faraday/retry/retryable.rb +35 -33
- data/lib/faraday/retry/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76aff4f986315a337600432e6d2458f4080004755f37583ac413bf454713602c
|
4
|
+
data.tar.gz: fe612cfa054e9f293d533404759734672284f92258f43a17fb9febbb455f5b61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11f9e7f0a270962bcc25ab31690fa8c14dc0fb461a74b8a7db94d7d719e48679590f12b554e37da579ea57824dc35fc13fc6820e4772b4de08b269e88924202f
|
7
|
+
data.tar.gz: 305559acfa19db8b994f2dc8e2e734f31fd1fdbe255b82eb3612ce5630d0c9b325ad46621892675a4e7fa6b85f99329fa0af635923619d650b69ce5a837689e5
|
@@ -1,44 +1,46 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
3
|
+
module Faraday
|
4
|
+
# Adds the ability to retry a request based on settings and errors that have occurred.
|
5
|
+
module Retryable
|
6
|
+
def with_retries(env:, options:, retries:, body:, errmatch:)
|
7
|
+
yield
|
8
|
+
rescue errmatch => e
|
9
|
+
exhausted_retries(options, env, e) if retries_zero?(retries, env, e)
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
11
|
+
if retries.positive? && retry_request?(env, e)
|
12
|
+
retries -= 1
|
13
|
+
rewind_files(body)
|
14
|
+
if (sleep_amount = calculate_sleep_amount(retries + 1, env))
|
15
|
+
options.retry_block.call(
|
16
|
+
env: env,
|
17
|
+
options: options,
|
18
|
+
retry_count: options.max - (retries + 1),
|
19
|
+
exception: e,
|
20
|
+
will_retry_in: sleep_amount
|
21
|
+
)
|
22
|
+
sleep sleep_amount
|
23
|
+
retry
|
24
|
+
end
|
23
25
|
end
|
24
|
-
end
|
25
26
|
|
26
|
-
|
27
|
+
raise unless e.is_a?(Faraday::RetriableResponse)
|
27
28
|
|
28
|
-
|
29
|
-
|
29
|
+
e.response
|
30
|
+
end
|
30
31
|
|
31
|
-
|
32
|
+
private
|
32
33
|
|
33
|
-
|
34
|
-
|
35
|
-
|
34
|
+
def retries_zero?(retries, env, exception)
|
35
|
+
retries.zero? && retry_request?(env, exception)
|
36
|
+
end
|
36
37
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
38
|
+
def exhausted_retries(options, env, exception)
|
39
|
+
options.exhausted_retries_block.call(
|
40
|
+
env: env,
|
41
|
+
exception: exception,
|
42
|
+
options: options
|
43
|
+
)
|
44
|
+
end
|
43
45
|
end
|
44
46
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: faraday-retry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mattia Giuffrida
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03
|
11
|
+
date: 2025-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -158,8 +158,8 @@ licenses:
|
|
158
158
|
- MIT
|
159
159
|
metadata:
|
160
160
|
bug_tracker_uri: https://github.com/lostisland/faraday-retry/issues
|
161
|
-
changelog_uri: https://github.com/lostisland/faraday-retry/blob/v2.3.
|
162
|
-
documentation_uri: http://www.rubydoc.info/gems/faraday-retry/2.3.
|
161
|
+
changelog_uri: https://github.com/lostisland/faraday-retry/blob/v2.3.1/CHANGELOG.md
|
162
|
+
documentation_uri: http://www.rubydoc.info/gems/faraday-retry/2.3.1
|
163
163
|
homepage_uri: https://github.com/lostisland/faraday-retry
|
164
164
|
source_code_uri: https://github.com/lostisland/faraday-retry
|
165
165
|
post_install_message:
|