ocean-rails 3.8.3 → 3.8.4
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/ocean/api.rb +12 -2
- data/lib/ocean/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: 38d84dfad509e2adcf4e7fd45e96521ece3c2a43
|
4
|
+
data.tar.gz: acc6f3f985fcc089587f77283877144a01f98fd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f25b2e7f2e80212f0e94bded0caa88d915ca9539bb9d2fdae9c0f7cc4710f47bfbe963a1c6bdbc985c6df625c16d2a79414635f118adb1eec6db5a6b3935d761
|
7
|
+
data.tar.gz: 32c800b13506c94da5b3633d11654b8462b0dffa1676a150a5cbf68c496f39e9cba0f58079fdba10694f9d18cd154bb84f99108571163657887610dc3399f986
|
data/lib/ocean/api.rb
CHANGED
@@ -160,8 +160,8 @@ class Api
|
|
160
160
|
# 30, etc. To disable waiting between retries entirely, set +backoff_time+ to zero.
|
161
161
|
#
|
162
162
|
def self.request(url, http_method, args: nil, headers: {}, body: nil,
|
163
|
-
credentials: nil,
|
164
|
-
x_api_token: headers['X-API-Token']
|
163
|
+
credentials: nil,
|
164
|
+
x_api_token: headers['X-API-Token'],
|
165
165
|
reauthentication: true,
|
166
166
|
ssl_verifypeer: true, ssl_verifyhost: 2,
|
167
167
|
retries: 0, backoff_time: 1, backoff_rate: 0.9, backoff_max: 30,
|
@@ -549,4 +549,14 @@ class Api
|
|
549
549
|
h
|
550
550
|
end
|
551
551
|
|
552
|
+
#
|
553
|
+
# Takes the same args as +.async_job_body+, post an AsyncJob and returns the Response.
|
554
|
+
# The AsyncJob is always created as the service ApiUser; the job carries its own
|
555
|
+
# credentials and token, specified as keywords +:credentials+ and +:token+.
|
556
|
+
#
|
557
|
+
def self.run_async_job(*args)
|
558
|
+
Api.request "#{INTERNAL_OCEAN_API_URL}/v1/async_jobs", :post,
|
559
|
+
body: async_job_body(*args).to_json, x_api_token: Api.service_token
|
560
|
+
end
|
561
|
+
|
552
562
|
end
|
data/lib/ocean/version.rb
CHANGED