zuora_api 1.7.09 → 1.7.10
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/zuora_api/login.rb +2 -2
- data/lib/zuora_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0072cf934b309803e48dc4597d8c9585ef9c077d93ec43f673b72b11bfa84d2
|
4
|
+
data.tar.gz: 0b01e12b27d8ddc78ba583e846a997636eea17cffdf72b6768478eb43bb1223a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8f93ddfb681a9e170bdc36c3d4c62e22e6e7366fab1ccb0db70b16b54fdb7294d62869222340f07525cae80ca44a13fcd331fffa8a657edf32c553aecfb1444
|
7
|
+
data.tar.gz: 8aa717fac8c552492344901956d5eb964922570b4ff14caba20ceb2821ba523ea20578892588578d38d68366d729ab95f1b6b85d8c4d43aa792fa0bd0a430b66
|
data/lib/zuora_api/login.rb
CHANGED
@@ -507,13 +507,13 @@ module ZuoraAPI
|
|
507
507
|
|
508
508
|
def raise_errors(type: :SOAP, body: nil, response: nil)
|
509
509
|
if [502,503].include?(response.code)
|
510
|
-
raise ZuoraAPI::Exceptions::ZuoraAPIConnectionTimeout.new("Received #{response.code} from
|
510
|
+
raise ZuoraAPI::Exceptions::ZuoraAPIConnectionTimeout.new("Received #{response.code} from #{response.request.uri}", response)
|
511
511
|
end
|
512
512
|
|
513
513
|
# Check failure response code
|
514
514
|
case response.code
|
515
515
|
when 504
|
516
|
-
raise ZuoraAPI::Exceptions::ZuoraAPIReadTimeout.new("Received 504 from
|
516
|
+
raise ZuoraAPI::Exceptions::ZuoraAPIReadTimeout.new("Received 504 from #{response.request.uri}", response)
|
517
517
|
when 429
|
518
518
|
raise ZuoraAPI::Exceptions::ZuoraAPIRequestLimit.new("The total number of concurrent requests has exceeded the limit allowed by the system. Please resubmit your request later.", response)
|
519
519
|
end
|
data/lib/zuora_api/version.rb
CHANGED