cpee 1.3.123 → 1.3.124
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.
- data/cpee.gemspec +1 -1
- data/server/handlerwrappers/default.rb +2 -1
- metadata +1 -1
data/cpee.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "cpee"
|
|
3
|
-
s.version = "1.3.
|
|
3
|
+
s.version = "1.3.124"
|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
|
5
5
|
s.license = "LGPL-3"
|
|
6
6
|
s.summary = "Preliminary release of cloud process execution engine (cpee). If you just need workflow execution, without a rest/xmpp service exposing it, then use WEEL"
|
|
@@ -123,7 +123,8 @@ class DefaultHandlerWrapper < WEEL::HandlerWrapperBase
|
|
|
123
123
|
end # }}}
|
|
124
124
|
def inform_position_change(ipc={}) # {{{
|
|
125
125
|
@controller.serialize_positions!
|
|
126
|
-
|
|
126
|
+
ipc[:instance] = @controller.instance_url
|
|
127
|
+
@controller.notify("properties/position/change", ipc)
|
|
127
128
|
end # }}}
|
|
128
129
|
def inform_state_change(newstate) # {{{
|
|
129
130
|
if @controller
|