zuora_connect 1.4.58 → 1.4.59
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/app/models/zuora_connect/app_instance_base.rb +3 -3
- data/lib/zuora_connect/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: addbe2f7558e50958f199c78556110f6e12a6b9a
|
4
|
+
data.tar.gz: 98ba68a2846ead5318e0e1dbb1b032801992cc29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ffae8162e12a45795acc9c365be82c2c77c153312c5ae041d56c7de4e6e9d713d9ea3fd645ec025a2e4a2336d0dbcf35127ceded808304d7de046289cd5c478
|
7
|
+
data.tar.gz: b4549c63ba726c901647ff099bbd0d7c9263d99161cbefd5de2e42570418f9509b02c8db7e881ea87ae3ccd6257acc714269daa4d66bc7aed24fcf55784f30c7
|
@@ -379,7 +379,7 @@ module ZuoraConnect
|
|
379
379
|
else
|
380
380
|
raise ZuoraConnect::Exceptions::ConnectCommunicationError.new("Error Communicating with Connect", response.body, response.code)
|
381
381
|
end
|
382
|
-
rescue Net::ReadTimeout, Net::OpenTimeout, Errno::ECONNRESET, Errno::ECONNREFUSED, SocketError
|
382
|
+
rescue Net::ReadTimeout, Net::OpenTimeout, Errno::EPIPE, Errno::ECONNRESET, Errno::ECONNREFUSED, SocketError
|
383
383
|
if count < 2
|
384
384
|
count += 1
|
385
385
|
retry
|
@@ -409,7 +409,7 @@ module ZuoraConnect
|
|
409
409
|
else
|
410
410
|
raise ZuoraConnect::Exceptions::ConnectCommunicationError.new("Error Communicating with Connect", response.body, response.code)
|
411
411
|
end
|
412
|
-
rescue Net::ReadTimeout, Net::OpenTimeout, Errno::ECONNRESET, Errno::ECONNREFUSED, SocketError
|
412
|
+
rescue Net::ReadTimeout, Net::OpenTimeout, Errno::EPIPE, Errno::ECONNRESET, Errno::ECONNREFUSED, SocketError
|
413
413
|
if count < 2
|
414
414
|
count += 1
|
415
415
|
retry
|
@@ -508,7 +508,7 @@ module ZuoraConnect
|
|
508
508
|
raise ZuoraConnect::Exceptions::ConnectCommunicationError.new("Error Refreshing Access Token", response.body, response.code)
|
509
509
|
end
|
510
510
|
|
511
|
-
rescue Net::ReadTimeout, Net::OpenTimeout, Errno::ECONNRESET, Errno::ECONNREFUSED, SocketError => ex
|
511
|
+
rescue Net::ReadTimeout, Net::OpenTimeout, Errno::EPIPE, Errno::ECONNRESET, Errno::ECONNREFUSED, SocketError => ex
|
512
512
|
if count < 2
|
513
513
|
count += 1
|
514
514
|
retry
|