cpee-instantiation 1.0.22 → 1.0.23

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
  SHA256:
3
- metadata.gz: c4bcaada2f94288fb474c05aa57efd0ccc51920f7b4a877f6baac3ee9a52106c
4
- data.tar.gz: 234e40846f6fd47f1eda15737e5b5c39aaa83627a9b305e0a8f900df344c4b3f
3
+ metadata.gz: 04d532584a3d397d4732080f033da4cb3a98b97c6ea996e63b2644eee50af5bb
4
+ data.tar.gz: 8103a8b314fee21e4ebdff6b38c78e039ea5bf9d91a57490c8ab9a843c427de6
5
5
  SHA512:
6
- metadata.gz: e15606a4a56063d3004fe4bf9aa954509ccfebc771fb8cede8319b1847941886214ed7cc309ec501463c74092f8376eaf4a88100fb2cecad0b0a17ea057430cf
7
- data.tar.gz: 3a134b1a185a3a0c95f34143a7224be55fb220db21971db21ad13befb7d16d05aebbf4fe39f7000bf7163cc6c530e5a4f8d9dcccf038894434f21df88e284eb4
6
+ metadata.gz: 9efda290608c350efe378435557d616cd275b6ad1371a87a5a19b565e827c400684c6013b91bebbd0761dfb4747da7faf4ef9486923d32487b3df79a8abfda69
7
+ data.tar.gz: f1aa5d80335eedfebb7d04d540229d28eeaad8b0a73b37ddda56d7224d4e416272e796e7bd2e254283d2132728d4973fe5ce41ea318a1c1e08dab94422353e2c
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "cpee-instantiation"
3
- s.version = "1.0.22"
3
+ s.version = "1.0.23"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.license = "LGPL-3.0"
6
6
  s.summary = "Subprocess instantiation service for the cloud process execution engine (cpee.org)"
@@ -431,7 +431,7 @@ end #}}}
431
431
  opts[:redis_pid] ||= 'redis.pid' # use e.g. /var/run/redis.pid if you do global. Look it up in your redis config
432
432
  opts[:redis_db_name] ||= 'redis.rdb' # use e.g. /var/lib/redis.rdb for global stuff. Look it up in your redis config
433
433
 
434
- opts[:cblist] = CPEE::redis_connect opts, 'Instantiation'
434
+ CPEE::redis_connect opts, 'Instantiation'
435
435
 
436
436
  Proc.new do
437
437
  parallel do
@@ -447,18 +447,18 @@ end #}}}
447
447
  run InstantiateXML, opts[:cpee], false if post 'xml'
448
448
  end
449
449
  on resource 'url' do
450
- run InstantiateUrl, opts[:cpee], opts[:self], opts[:cblist], false if post 'url'
451
- run InstantiateUrl, opts[:cpee], opts[:self], opts[:cblist], true if post 'url_info'
450
+ run InstantiateUrl, opts[:cpee], opts[:self], opts[:redis], false if post 'url'
451
+ run InstantiateUrl, opts[:cpee], opts[:self], opts[:redis], true if post 'url_info'
452
452
  end
453
453
  on resource 'git' do
454
- run InstantiateGit, opts[:cpee], opts[:self], opts[:cblist] if post 'git'
454
+ run InstantiateGit, opts[:cpee], opts[:self], opts[:redis] if post 'git'
455
455
  end
456
456
  on resource 'instance' do
457
- run HandleInstance, opts[:cpee], opts[:self], opts[:cblist] if post 'instance'
457
+ run HandleInstance, opts[:cpee], opts[:self], opts[:redis] if post 'instance'
458
458
  end
459
459
  on resource 'callback' do
460
460
  on resource do
461
- run ContinueTask, opts[:cpee], opts[:cblist] if post
461
+ run ContinueTask, opts[:cpee], opts[:redis] if post
462
462
  end
463
463
  end
464
464
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cpee-instantiation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.22
4
+ version: 1.0.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juergen eTM Mangler