iron_worker_ng 1.0.3 → 1.0.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/iron_worker_ng/client.rb +1 -1
- data/lib/iron_worker_ng/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: af78605c4ced3c34d7e9c42ceefa60379292896c
|
|
4
|
+
data.tar.gz: 977d560087ba2cedd1d1529a098f528a03ad5a61
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e63f812209f2396fd9dd56aacf1fa6f44c4ba0e951f7ccb9b9b45a5420d42a32fab15baa4255efdd805c26d7b9fe67f2c73df25673a8e215108ee5af26a61ad
|
|
7
|
+
data.tar.gz: 2dc81dc7131823b9d450b7d8f33cf50ae2b30ae94d47f997303202ef3dd54466890ada56a30a5f89ecbddad5ebc821e3d329b343e0d3a85d307b6d26864455bf
|
|
@@ -359,7 +359,7 @@ EXEC_FILE
|
|
|
359
359
|
def schedules_list(options = {})
|
|
360
360
|
IronCore::Logger.debug 'IronWorkerNG', "Calling schedules.list with options='#{options.to_s}'"
|
|
361
361
|
|
|
362
|
-
@api.schedules_list(options)['schedules'].map { |s| OpenStruct.new(s) }
|
|
362
|
+
@api.schedules_list(options)['schedules'].map { |s| OpenStruct.new(s.merge('_id' => s['id'])) }
|
|
363
363
|
end
|
|
364
364
|
|
|
365
365
|
def schedules_get(schedule_id)
|