isono 0.2.7 → 0.2.8

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.
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{isono}
5
- s.version = "0.2.7"
5
+ s.version = "0.2.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["axsh Ltd.", "Masahiro Fujiwara"]
@@ -51,7 +51,7 @@ module Isono
51
51
  def run(endpoint, command, *args, &blk)
52
52
  cur_job_ctx = Thread.current[JobWorker::JOB_CTX_KEY]
53
53
  req = rpc.request("job.#{endpoint}", command, *args) { |req|
54
- req.timeout = config_section.timeout_sec
54
+ req.timeout_sec = config_section.timeout_sec
55
55
  req.request[:job_id] = Util.gen_id
56
56
 
57
57
  # A job is working on this current thread if cur_job_ctx is
@@ -1,5 +1,5 @@
1
1
  # -*- coding: utf-8 -*-
2
2
 
3
3
  module Isono
4
- VERSION='0.2.7'
4
+ VERSION='0.2.8'
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isono
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 7
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 7
10
- version: 0.2.7
9
+ - 8
10
+ version: 0.2.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - axsh Ltd.