zuora_api 0.2.7.6.6 → 0.2.7.6.7
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1aa872408539fbcce510f8ef819ffdb64633cf6d
|
4
|
+
data.tar.gz: 1bbb4bce4338e0f19ae5a5145cb436f7a731f819
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 433bc10785f2223b9d3c34735d321cc03572fcb646c9dbcd3431104f040d390fee3a5875ba93dcf9e3389aa82f4f21cdd8bbf541f1b5e3143cfbcaf49eec47bd
|
7
|
+
data.tar.gz: 1cd70a928f74b85627897166938a445e7bb7cd8d92bd6a624898234ff6eff7b59082170c6a8c75d83a9e6f8d647d0ca3810d9fa698340ff912c7abf7d276c5f3
|
data/lib/zuora_api/login.rb
CHANGED
@@ -223,7 +223,7 @@ module ZuoraAPI
|
|
223
223
|
else
|
224
224
|
raise ex
|
225
225
|
end
|
226
|
-
rescue ZuoraAPI::Exceptions::ZuoraAPIError => ex
|
226
|
+
rescue ZuoraAPI::Exceptions::ZuoraAPIError, ZuoraAPI::Exceptions::ZuoraAPIRequestLimit, ZuoraAPI::Exceptions::ZuoraAPILockCompetition => ex
|
227
227
|
if debug
|
228
228
|
raise ex
|
229
229
|
else
|
@@ -293,7 +293,7 @@ module ZuoraAPI
|
|
293
293
|
else
|
294
294
|
raise ex
|
295
295
|
end
|
296
|
-
rescue ZuoraAPI::Exceptions::ZuoraAPIError => ex
|
296
|
+
rescue ZuoraAPI::Exceptions::ZuoraAPIError, ZuoraAPI::Exceptions::ZuoraAPIRequestLimit => ex
|
297
297
|
if debug
|
298
298
|
raise ex
|
299
299
|
else
|
data/lib/zuora_api/version.rb
CHANGED