ncore 2.3.2 → 2.3.3
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/CHANGELOG.md +4 -0
- data/lib/ncore/client.rb +2 -1
- data/lib/ncore/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57e1ee1a969b6a8679b297f537fe6d2c6d95418d75db88cce96c8342e3ff29ac
|
|
4
|
+
data.tar.gz: 45b8e54512221b1510ed57a9c594d2818cf4b1b86dce448145d1786422c8e788
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9b61a2fcba5cdd6640b37ba99400acd45348ae4ee65d51f56b4cb3a25a180670e3b4b02a53276b68fca0e77d5c669e0a835fe7c7057df9006e8e71e7b797080
|
|
7
|
+
data.tar.gz: 7e146be87089170ce8fd889bcfc3c055caf476f918297707d174bc86ad395db7eaafc61e3c0e49c912b90909b675a61eec35b97d0be36897f8a7bec7d9bbd4c0
|
data/CHANGELOG.md
CHANGED
data/lib/ncore/client.rb
CHANGED
|
@@ -175,7 +175,8 @@ module NCore
|
|
|
175
175
|
begin
|
|
176
176
|
tries += 1
|
|
177
177
|
response = connection.request rest_opts.except(:url)
|
|
178
|
-
rescue Excon::Errors::SocketError, Excon::Error::Timeout,
|
|
178
|
+
rescue Excon::Error::Socket, Excon::Errors::SocketError, Excon::Error::Timeout,
|
|
179
|
+
Errno::EADDRNOTAVAIL, Errno::ECONNRESET => e
|
|
179
180
|
# retry when keepalive was closed
|
|
180
181
|
if tries <= 1 #&& e.message =~ /end of file reached/
|
|
181
182
|
retry
|
data/lib/ncore/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ncore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Notioneer Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-12-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
140
|
version: '0'
|
|
141
141
|
requirements: []
|
|
142
|
-
rubygems_version: 3.2.
|
|
142
|
+
rubygems_version: 3.2.33
|
|
143
143
|
signing_key:
|
|
144
144
|
specification_version: 4
|
|
145
145
|
summary: NCore - Gem for building REST API clients
|