cpee 1.3.115 → 1.3.116
Sign up to get free protection for your applications and to get access to all the features.
- data/cpee.gemspec +1 -1
- data/lib/cpee/controller.rb +1 -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.116"
|
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"
|
data/lib/cpee/controller.rb
CHANGED
@@ -383,7 +383,7 @@ module CPEE
|
|
383
383
|
node.children.delete_all!
|
384
384
|
@instance.endpoints.clear
|
385
385
|
addit.each_slice(2).each do |k,v|
|
386
|
-
@instance.endpoints[k.value] = ValueHelper::parse(v.value)
|
386
|
+
@instance.endpoints[k.value.to_sym] = ValueHelper::parse(v.value)
|
387
387
|
node.add(k.value,ValueHelper::generate(v.value))
|
388
388
|
end
|
389
389
|
nots << ["properties/endpoints/change", {:instance => instance_url, :changed => JSON::generate(@instance.endpoints)}]
|