cpee 2.1.115 → 2.1.116
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/cpee.gemspec +1 -1
- data/lib/cpee/implementation.rb +1 -1
- data/server/routing/end.pid +1 -1
- data/server/routing/forward-events-00.pid +1 -1
- data/server/routing/forward-votes.pid +1 -1
- data/server/routing/persist.pid +1 -1
- data/tools/server/cpee +7 -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: 3eb9853edac0b3ad2413b2ef41256b54064c3618f5e1877591f67f482c895353
|
|
4
|
+
data.tar.gz: 65276875e7580a1c2de812710b3081513923793e6688da87ee6658d111e45b83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 994b2198672fe22a8ac9e6e985db03177a3bce67fcd7043e4e717543d4c0d4e5676758ab6e52e58d191aff1dfbfd65e9a5328060ef981cd475fe441033190861
|
|
7
|
+
data.tar.gz: a2d39865c4f2af4f4f06c67ff7535251b19dca5d85f1a7507ecec41c345b1e62b11af21c8751b49ff38372c64a91f6fb347fc0826aaaa0fd42f42cae6c056f43
|
data/cpee.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "cpee"
|
|
3
|
-
s.version = "2.1.
|
|
3
|
+
s.version = "2.1.116"
|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
|
5
5
|
s.license = "LGPL-3.0-or-later"
|
|
6
6
|
s.summary = "The cloud process execution engine (cpee.org). If you just need workflow execution, without a rest service exposing it, then use WEEL."
|
data/lib/cpee/implementation.rb
CHANGED
|
@@ -184,7 +184,7 @@ module CPEE
|
|
|
184
184
|
content['mem_available'] = mem_ava
|
|
185
185
|
content['mem_bufferedandcached'] = mem_buc
|
|
186
186
|
content['mem_used'] = mem_usd
|
|
187
|
-
CPEE::Message::send_url(:event,'node/resource_utilization',File.join(opts[:url],'/'),content,
|
|
187
|
+
CPEE::Message::send_url(:event,'node/resource_utilization',File.join(opts[:url],'/'),content,opts[:dashing_target])
|
|
188
188
|
|
|
189
189
|
# Keep this as last for our next read
|
|
190
190
|
idl_last = sci
|
data/server/routing/end.pid
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
209439
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
209481
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
209467
|
data/server/routing/persist.pid
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
209453
|
data/tools/server/cpee
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/ruby
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
if File.exist?(File.join(__dir__,'..','lib','cpee','implementation.rb'))
|
|
3
|
+
require_relative File.join(__dir__,'..','lib','cpee','implementation')
|
|
4
|
+
elsif File.exist?(File.join(Dir.home,'Projects','cpee','lib','cpee','implementation.rb'))
|
|
5
|
+
require_relative File.join(Dir.home, 'Projects','cpee','lib','cpee','implementation')
|
|
6
|
+
else
|
|
7
|
+
require 'cpee/implementation'
|
|
8
|
+
end
|
|
4
9
|
|
|
5
10
|
Riddl::Server.new(CPEE::SERVER, :host => 'localhost', :port => 8298) do |opts|
|
|
6
11
|
opts[:instances] = File.join(__dir__,'instances')
|