norikra 1.0.7-java → 1.0.8-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 89c004c84e1c294cb0a07cb42fb8af1f09ce5bb9
4
- data.tar.gz: 5d8907d43f09fd2c772c55dc7e1bfc97bbc2508b
3
+ metadata.gz: 917e9b3428179553a0f1d8bbc55281efa8cc00d5
4
+ data.tar.gz: 95fa55e7b1918aad040c11bbd6b4b949fd3b9ab9
5
5
  SHA512:
6
- metadata.gz: ebb8eb23d2656c6006f12a780be1c839d09a581cb13de2da983d27424dadc2f603a61633ca564353d71456781f13f969563e8af93a98fcc1137fef4027cd1581
7
- data.tar.gz: 26b751b08b6686c9925c91956835f96f71a4746168368eb6c83d15d405118b0c743023caa36605615f092dbf1c647a7b3dcf1cbe45baf669b929ce46f996fe68
6
+ metadata.gz: 21d08b2da70b8515c6d0b3aca18b1f62e3b29656a33a641ad8eabb4cef12789c1c94ffc7a2c35e7fa6a01257c2159b35c6bbdcd7a8d5a69dedd45b81118c2a4a
7
+ data.tar.gz: fe5f74066d60bf5bf87b061293cc95ab6ac4f6bd35bd1811a4e4dfe3c0d5bb4287d74ada2d5e12b9c208765e768c97cb193bb5c448625f96eaaa5156d1c3edfa
data/Changes.md CHANGED
@@ -3,6 +3,8 @@
3
3
  Changes of norikra.
4
4
 
5
5
  ## v1
6
+ * v1.0.8:
7
+ * Fix bug not to read command line options for time/route threads
6
8
  * v1.0.7:
7
9
  * Fix bug to set nested values as always required if the first event includes container fields (issue #51)
8
10
  * v1.0.6:
@@ -208,8 +208,13 @@ module Norikra
208
208
  web: {},
209
209
  }
210
210
  [:inbound, :outbound, :route_exec, :timer_exec].each do |sym|
211
- conf[:thread][:engine][sym][:threads] = options[:"#{sym}-threads"] if options[:"#{sym}-threads"]
212
- conf[:thread][:engine][sym][:capacity] = options[:"#{sym}-thread-capacity"] if options[:"#{sym}-thread-capacity"]
211
+ opt_sym = case sym
212
+ when :route_exec then :route
213
+ when :timer_exec then :timer
214
+ else sym
215
+ end
216
+ conf[:thread][:engine][sym][:threads] = options[:"#{opt_sym}-threads"] if options[:"#{opt_sym}-threads"]
217
+ conf[:thread][:engine][sym][:capacity] = options[:"#{opt_sym}-thread-capacity"] if options[:"#{opt_sym}-thread-capacity"]
213
218
  end
214
219
  conf[:thread][:rpc][:threads] = options[:'rpc-threads'] if options[:'rpc-threads']
215
220
  conf[:thread][:web][:threads] = options[:'web-threads'] if options[:'web-threads']
@@ -1,3 +1,3 @@
1
1
  module Norikra
2
- VERSION = "1.0.7"
2
+ VERSION = "1.0.8"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: norikra
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.8
5
5
  platform: java
6
6
  authors:
7
7
  - TAGOMORI Satoshi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-10 00:00:00.000000000 Z
11
+ date: 2014-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mizuno