uc3-dmp-external-api 0.0.19 → 0.0.20
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/uc3-dmp-external-api/client.rb +1 -1
- data/lib/uc3-dmp-external-api/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: 0d81cb7f9cbee4f822a3f4ff5ead07879586a5efe3c4e0c2f799f92079382a92
|
4
|
+
data.tar.gz: 76f9e493bb62e76b3c047f178496627001020c211a3351f1dac1a3d92ca6120f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73212fffa7074aaf31638a5a14e70429dc2916cc24ece9666cc98af2a928541024bd215329279825149a3070b1481ae3cba29f73f4f7536ea5750909c1c41b03
|
7
|
+
data.tar.gz: 980063a3cde752cdd289a89ef7bd39d836da49ee9e83c31ade76160bf8a5e72f28220d6774c80b3c0621e2c09b88a3657bb2c69ea9910ac3c7e2d36796645102
|
@@ -19,7 +19,7 @@ module Uc3DmpExternalApi
|
|
19
19
|
# Call the specified URL using the specified HTTP method, body and headers
|
20
20
|
# rubocop:disable Metrics/AbcSize, Metrics/ParameterLists
|
21
21
|
def call(url:, method: :get, body: '', basic_auth: {}, additional_headers: {}, logger: nil)
|
22
|
-
uri = URI(
|
22
|
+
uri = URI(url)
|
23
23
|
# Skip the body if we are doing a get
|
24
24
|
body = nil if method.to_sym == :get
|
25
25
|
opts = _options(body:, basic_auth:, additional_headers:, logger:)
|