zuora_connect 1.7.84 → 1.7.85
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 +4 -1
- data/lib/zuora_connect/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: fb7b4bc48475d496af776abf5e46eb4cd052238b4258bc4e5e26d02fdd690738
|
4
|
+
data.tar.gz: 6347b4e44da849804ee044dbe99da68568a709593c481efc2f2741bbb9b8948f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d2bdc2347d5790ad6e2b9440a6f2c673dcdf22898d25126315134d2a4f54d366ee623e286d135fae3ec901daff83787cf6ebd9e4c6a19bc8c502a11edb85321
|
7
|
+
data.tar.gz: 31bfae2b4b6619c57f045b945b9fb3d34b7123a518fec48f2cdfa6b2a307126098cce46d18e48c1b7eb617468f428ff2db235413f76d1990e85944498428755a
|
@@ -351,7 +351,10 @@ module ZuoraConnect
|
|
351
351
|
end
|
352
352
|
rescue => ex
|
353
353
|
ZuoraConnect.logger.error("Task Data: #{task_data}") if task_data.present?
|
354
|
-
|
354
|
+
if session.present?
|
355
|
+
ZuoraConnect.logger.error("Task Session: #{session.to_h}") if session.methods.include?(:to_h)
|
356
|
+
ZuoraConnect.logger.error("Task Session: #{session.to_hash}") if session.methods.include?(:to_hash)
|
357
|
+
end
|
355
358
|
raise
|
356
359
|
end
|
357
360
|
|