cpee 2.0.3 → 2.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/cpee.gemspec +1 -1
- data/lib/cpee/implementation_properties.rb +1 -1
- data/tools/cpee +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bbd427d42a5f3a293559f8ac3687b80b76c6479e8c62f00bceff03606aaba3e1
|
4
|
+
data.tar.gz: '08a71c3d9c4b8091bc09f4d45fc3a95e2d717780186c5d2c021df4476388c9a8'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56c2e4b9a14c5b4f12fd57f22a70ce707db68f14618c11966950726eccc5769a8b4036ef6fb62d486a60afe4ea7310710069dec25ac0913ba73378e927c7edaf
|
7
|
+
data.tar.gz: 32a0cbc433baa7be0f84741d92b1c30b7ebb9ad10ed12e2f70c0398d5f1bfd0279495e80ac21e5237b3fb57580585d5895dacbd1b830c2797790b446af555749
|
data/cpee.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "cpee"
|
3
|
-
s.version = "2.0.
|
3
|
+
s.version = "2.0.5"
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.license = "LGPL-3.0"
|
6
6
|
s.summary = "Preliminary release of cloud process execution engine (cpee.org). If you just need workflow execution, without a rest service exposing it, then use WEEL."
|
@@ -215,7 +215,7 @@ module CPEE
|
|
215
215
|
case state
|
216
216
|
when 'running'
|
217
217
|
CPEE::Persistence::write_instance id, opts
|
218
|
-
pid = Kernel.spawn(exe , :pgroup => true, :in=>
|
218
|
+
pid = Kernel.spawn(exe , :pgroup => true, :in => '/dev/null', :out => exe + '.out', :err => exe + '.err')
|
219
219
|
Process.detach pid
|
220
220
|
File.write(exe + '.pid',pid)
|
221
221
|
when 'stopping'
|
data/tools/cpee
CHANGED
@@ -52,8 +52,7 @@ ARGV.options { |opt|
|
|
52
52
|
opt.parse!
|
53
53
|
}
|
54
54
|
if (ARGV.length == 0) ||
|
55
|
-
(ARGV.length == 1 && ARGV[0]
|
56
|
-
(ARGV.length == 1 && ARGV[0] != 'convert') ||
|
55
|
+
(ARGV.length == 1 && !(%w(ui convert).include?(ARGV[0]))) ||
|
57
56
|
(ARGV.length == 2 && !(%w(abandon start delete! cpui new).include?(ARGV[0]))) ||
|
58
57
|
(ARGV.length == 3 && ARGV[0] != 'archive') ||
|
59
58
|
(ARGV.length > 3)
|