zuora_connect 2.0.57r → 2.0.57s
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 +1 -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: a5e48e465fd04b36fa1992f00cdb1670a44dde0bd7bd9b121446018ec5f1da9e
|
|
4
|
+
data.tar.gz: 0e44752cdb3d4ecb9647d7965986b4cd56590fe1fdb27c4415f1b8835630b726
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cecd469b3bd8d3562201d12fdb1d6860e4a0b124b7268dadd371978cf134c05fe49ec9220898505b542d0a9399c494fb929a7f9dd35ab3660beef5883c578f38
|
|
7
|
+
data.tar.gz: 47c7f48e0fd5b26f9a169690c36f0fd142820b347c1fd51cb7795280e392ad937ba4396340e7196238eddacc523384c82d254dc7df8fd8b013511370fc6e0da5
|
|
@@ -48,7 +48,7 @@ module ZuoraConnect
|
|
|
48
48
|
render json: {"status": 401, "message": "Missing mapping or no deployment for '#{zuora_host}-#{zuora_entity_id}' ."}, status: :unauthorized
|
|
49
49
|
return
|
|
50
50
|
elsif appinstances.size > 1
|
|
51
|
-
render json: {"status": 401, "message": "More than one app instance binded to host and entity ids. Please indicate correct instance via 'zuora-instance-id' header", "instances": appinstances.map {|instance| instance.id } }, status: :unauthorized
|
|
51
|
+
render json: {"status": 401, "message": "More than one app instance binded to host and entity ids. Please indicate correct instance via 'zuora-instance-id' header", "instances": appinstances.map {|instance| instance.id }.sort }, status: :unauthorized
|
|
52
52
|
return
|
|
53
53
|
else
|
|
54
54
|
@appinstance = appinstances.first
|