zuora_connect 1.7.39 → 1.7.40
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 +1 -1
- 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: d593775752e2351d8fbd00919230409de90fb83c
|
4
|
+
data.tar.gz: 882ada61bc6097a03dce7ae577a91bbd73fc99ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7cd042762576bd6edf81a60415d16fbe10b328867fdb8e48472d1a5d653c19117ee9c20a202fd5c0cdff33ce01943071077e8434aa3eb8567c109241709e760d
|
7
|
+
data.tar.gz: a3503e8e4a28dea4b555f72aa9d3265da7b8a98a58538af83b5fb07364cce51d8c95ea6f2ce653627faba3e921315ea9de05ffcbb26e52814e0c7e6860aa36cf
|
@@ -528,7 +528,7 @@ module ZuoraConnect
|
|
528
528
|
def queue_pause(time: nil, current_user: 'Default')
|
529
529
|
key = "#{self.id}__#{current_user}"
|
530
530
|
if time.present?
|
531
|
-
raise "Time must be
|
531
|
+
raise "Time must be integer of seconds." if ['Integer', 'Fixnum'].include?(time.class.to_s)
|
532
532
|
Resque.redis.zadd("PauseQueue", Time.now.to_i + time, key)
|
533
533
|
else
|
534
534
|
Resque.redis.zadd("PauseQueue", 9999999999, key)
|