zuora_connect 1.7.85 → 1.7.86
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 +2 -1
- data/config/initializers/resque.rb +1 -1
- data/lib/zuora_connect.rb +1 -0
- data/lib/zuora_connect/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d36bb176e0789d5677169dc8e1d9b89f2feae6528906925d014df822710d2f1
|
4
|
+
data.tar.gz: e77d79f0bae7de7b1fb1057e890f4f89e501940b38766d13142783d9eab1af55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d16c20f9e55a6288578be7bf46fb9e5f31248df87b285072349ba96fd60f1582b9e29a23a4b38265c0083844df161fac679a9713c7e9c6bdd3d8382e5de9260
|
7
|
+
data.tar.gz: 2cb5686731cc411508a00a1fc1730d3f7d92e633a398977da74d3020a7d8a4078e1b20013dbab3253086c8198c4928f25d2f9209674c2de50fc7b070fb247fe7
|
@@ -275,6 +275,7 @@ module ZuoraConnect
|
|
275
275
|
stats_hash["total_active"] = stats.active + stats_hash["total_active"]
|
276
276
|
stats_hash["total_queued"] = stats.queued + stats_hash["total_queued"]
|
277
277
|
end if unix
|
278
|
+
rescue IOError => ex
|
278
279
|
rescue => ex
|
279
280
|
ZuoraConnect.logger.error(ex)
|
280
281
|
end
|
@@ -460,7 +461,7 @@ module ZuoraConnect
|
|
460
461
|
self.save(:validate => false)
|
461
462
|
else
|
462
463
|
ZuoraConnect.logger.fatal("[#{self.id}] REFRESH OAUTH - Failed Code #{response.code}")
|
463
|
-
raise ZuoraConnect::Exceptions::ConnectCommunicationError.new("Error Refreshing Access Token", response.body, response.code)
|
464
|
+
raise ZuoraConnect::Exceptions::ConnectCommunicationError.new("Error Refreshing Access Token for #{self.id}", response.body, response.code)
|
464
465
|
end
|
465
466
|
rescue *(ZuoraAPI::Login::CONNECTION_EXCEPTIONS).concat(ZuoraAPI::Login::CONNECTION_READ_EXCEPTIONS) => ex
|
466
467
|
if (refresh_oauth_count += 1) < 3
|
@@ -22,7 +22,7 @@ Resque.module_eval do
|
|
22
22
|
end
|
23
23
|
|
24
24
|
if defined?(Resque)
|
25
|
-
Resque.logger = ZuoraConnect.custom_logger(name: "Resque", type: 'Monologger')
|
25
|
+
Resque.logger = ZuoraConnect.custom_logger(name: "Resque", type: 'Monologger', level: MonoLogger::INFO)
|
26
26
|
Resque::Scheduler.logger = ZuoraConnect.custom_logger(name: "ResqueScheduler") if defined?(Resque::Scheduler)
|
27
27
|
end
|
28
28
|
|
data/lib/zuora_connect.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zuora_connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.86
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Connect Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-05-
|
11
|
+
date: 2019-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: apartment
|