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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af805c058f1e08fba4ab4c53587f88906f086f06bda02dd4daf578123d6aa79f
4
- data.tar.gz: 714eeaadf0d8021d7c33f86ece4dda66366fcc6525e8bf395c3e71591d0a8bc2
3
+ metadata.gz: 76aff4f986315a337600432e6d2458f4080004755f37583ac413bf454713602c
4
+ data.tar.gz: fe612cfa054e9f293d533404759734672284f92258f43a17fb9febbb455f5b61
5
5
  SHA512:
6
- metadata.gz: 6de30437afefef5b6887a0c7b2e72615775b63a92aaee63c37672631d9e09011b0b46fa9c208e6ca280d55ace287e12c9077ed18107968bc5593255cd028b6c1
7
- data.tar.gz: dc0e7f4b11e714addd9a11426cc5071eb2245ea8f5cb24a38e7f63ee50030df81b14380912b4f0b786f9bfa53dfeccbc16f802337638054d7e36ad56be667f3f
6
+ metadata.gz: 11f9e7f0a270962bcc25ab31690fa8c14dc0fb461a74b8a7db94d7d719e48679590f12b554e37da579ea57824dc35fc13fc6820e4772b4de08b269e88924202f
7
+ data.tar.gz: 305559acfa19db8b994f2dc8e2e734f31fd1fdbe255b82eb3612ce5630d0c9b325ad46621892675a4e7fa6b85f99329fa0af635923619d650b69ce5a837689e5
@@ -1,44 +1,46 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Adds the ability to retry a request based on settings and errors that have occurred.
4
- module Retryable
5
- def with_retries(env:, options:, retries:, body:, errmatch:)
6
- yield
7
- rescue errmatch => e
8
- exhausted_retries(options, env, e) if retries_zero?(retries, env, e)
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
- if retries.positive? && retry_request?(env, e)
11
- retries -= 1
12
- rewind_files(body)
13
- if (sleep_amount = calculate_sleep_amount(retries + 1, env))
14
- options.retry_block.call(
15
- env: env,
16
- options: options,
17
- retry_count: options.max - (retries + 1),
18
- exception: e,
19
- will_retry_in: sleep_amount
20
- )
21
- sleep sleep_amount
22
- retry
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
- raise unless e.is_a?(Faraday::RetriableResponse)
27
+ raise unless e.is_a?(Faraday::RetriableResponse)
27
28
 
28
- e.response
29
- end
29
+ e.response
30
+ end
30
31
 
31
- private
32
+ private
32
33
 
33
- def retries_zero?(retries, env, exception)
34
- retries.zero? && retry_request?(env, exception)
35
- end
34
+ def retries_zero?(retries, env, exception)
35
+ retries.zero? && retry_request?(env, exception)
36
+ end
36
37
 
37
- def exhausted_retries(options, env, exception)
38
- options.exhausted_retries_block.call(
39
- env: env,
40
- exception: exception,
41
- options: options
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Faraday
4
4
  module Retry
5
- VERSION = '2.3.0'
5
+ VERSION = '2.3.1'
6
6
  end
7
7
  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.0
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-30 00:00:00.000000000 Z
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.0/CHANGELOG.md
162
- documentation_uri: http://www.rubydoc.info/gems/faraday-retry/2.3.0
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: