qyu 1.0.0 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d9b20d25c456278bced692a847ebacc7f6d47793b84dd4aea02df255ddb441b3
4
- data.tar.gz: 00006250c1b37a994c7cbe344fe786a7487c35495538d661506cac37e2e3eba1
3
+ metadata.gz: f98e891b68c01847f3ca695ed2fb92823c2c2bbfc57081e84fe47ee8709adde6
4
+ data.tar.gz: 2a166836847513af0227096430f9a7e08c0755fcc2eb20f77c96cc5726b5ffc5
5
5
  SHA512:
6
- metadata.gz: a9752fc4799da6be2ce17a797a7621019fe4fc39da356f39861fbbf069f3785708ba702030ab8c4c3c58ac08398b7e66086da278031bcbc7ef2fde90850a0066
7
- data.tar.gz: 1234718f10d09022557ffb1b939a4976b43ea51e1ecf941adb981f658d61c1427edffd8582e47fdd8bf94c220df07c1754b24f80f9cfa4c003015bf37054040a
6
+ metadata.gz: bbcfd3dfffc5e084a1b250c15d06772b6b6acb8c0178d02e3fbdbe3538946397c27bd55ab18e11f91fe83cdb926612d00df9ca48eebcb7496e54e8dacd7d271a
7
+ data.tar.gz: 0a5ddbd2392e6a317c094d4ae5126b63f411f953cc50cda9ec57fc5d38621a42b0536c3143dd9baf802f0e313f08894838ced017eeeba95c9823ba1f5a3b809f
@@ -9,7 +9,7 @@ module Qyu
9
9
  INVALID_PAYLOAD = 'invalid_payload'
10
10
 
11
11
  def self.find(id)
12
- Qyu.store.find_task(@id)
12
+ Qyu.store.find_task(id)
13
13
  end
14
14
 
15
15
  def initialize(id)
@@ -1,3 +1,3 @@
1
1
  module Qyu
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
@@ -52,7 +52,7 @@ module Qyu
52
52
 
53
53
  def check_completion!(task_ids)
54
54
  task_ids.each do |task_id|
55
- state = Qyu::Status.find(task_id)
55
+ state = Qyu::Status.new(task_id)
56
56
  log(:debug, "[CHECK_COMPLETION] Task ID: #{task_id}, Status: #{state.status}")
57
57
  next if state.completed?
58
58
  fail Qyu::Errors::UnsyncError
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: qyu
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elod Peter
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2018-02-02 00:00:00.000000000 Z
12
+ date: 2018-02-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -271,7 +271,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
271
271
  version: '0'
272
272
  requirements: []
273
273
  rubyforge_project:
274
- rubygems_version: 2.7.4
274
+ rubygems_version: 2.7.3
275
275
  signing_key:
276
276
  specification_version: 4
277
277
  summary: Distributed task execution system for complex workflows