zuora_connect 3.0.0.pre.c → 3.0.0.pre.d
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_connect/controllers/helpers.rb +2 -2
- 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: 34c3f287eb840ceed24b0d22bc012f24de5a70a2fff4c94a3e68bcb01f03f2bd
|
|
4
|
+
data.tar.gz: 4262c8ba701c7492a56f9744cf458a2adb8f67477aeaec0bd86faba066500083
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c45b9b85008fed91af0b8f3811283cdc0cb385db32835169aa13a25625d1d5652076ca63a36eab526960df9a88332188c31b0912807cfe05679c448e79de91e
|
|
7
|
+
data.tar.gz: a5c174283aa01be4b830a9a3931b0ed05d725b98b6148ef76d68c8fb1fad4ffbe7d88f09aa82829cd180d847860137c851b9383b7b0ede41b6225ea39dfa673b
|
|
@@ -692,9 +692,9 @@ module ZuoraConnect
|
|
|
692
692
|
if @appinstance.blank?
|
|
693
693
|
Apartment::Tenant.switch!("public")
|
|
694
694
|
begin
|
|
695
|
-
Apartment::Tenant.create(
|
|
695
|
+
Apartment::Tenant.create(ZuoraConnect.configuration.dev_mode_appinstance.to_s)
|
|
696
696
|
rescue Apartment::TenantExists => ex
|
|
697
|
-
Apartment::Tenant.drop(
|
|
697
|
+
Apartment::Tenant.drop(ZuoraConnect.configuration.dev_mode_appinstance.to_s)
|
|
698
698
|
retry
|
|
699
699
|
end
|
|
700
700
|
@appinstance = ZuoraConnect::AppInstance.new()
|