cpee-instantiation 1.1.6 → 1.1.8
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-instantiation.gemspec +2 -2
- data/lib/cpee-instantiation/instantiation.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ddc57344e3c12e98b6120206d3377f77bfbacd21f0f8f1bc4459e471a0b04350
|
|
4
|
+
data.tar.gz: 3ac491c44a9498a88066f1e946b6cc08bb2ad9e7e477b602c4b65bea6b2d4d8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 278167e399bcf0ad058efe794ca21ecfcae6a590e10f20f9418f936e4af7a085d9bc4d11e4291566b7b3104f2d03174872352bf9c37ce75ab86eacf95b161e34
|
|
7
|
+
data.tar.gz: bb0c75b0c2804882ed81422d07facff47e2ab70f584cf308708e494735d380f29c13571b79c1a51409d4ad9012780981befbf5cb85197b1384b495815b57343c
|
data/cpee-instantiation.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "cpee-instantiation"
|
|
3
|
-
s.version = "1.1.
|
|
3
|
+
s.version = "1.1.8"
|
|
4
4
|
s.platform = Gem::Platform::RUBY
|
|
5
5
|
s.license = "LGPL-3.0-or-later"
|
|
6
6
|
s.summary = "Subprocess instantiation service for the cloud process execution engine (cpee.org)"
|
|
@@ -23,5 +23,5 @@ Gem::Specification.new do |s|
|
|
|
23
23
|
s.add_runtime_dependency 'riddl', '~> 1.0', '>= 1.0.10'
|
|
24
24
|
s.add_runtime_dependency 'json', '~> 2.1'
|
|
25
25
|
s.add_runtime_dependency 'redis', '~> 5.0'
|
|
26
|
-
s.add_runtime_dependency 'cpee', '~> 2.1', '>= 2.1.
|
|
26
|
+
s.add_runtime_dependency 'cpee', '~> 2.1', '>= 2.1.114'
|
|
27
27
|
end
|
|
@@ -297,7 +297,7 @@ module CPEE
|
|
|
297
297
|
opts[:redis_db] ||= 0
|
|
298
298
|
opts[:redis_url] ||= 'unix://redis.sock' # sadly we have to do this for now
|
|
299
299
|
opts[:redis_unixsocket] ||= true
|
|
300
|
-
opts[:redis_cmd] ||= 'redis-server --port #redis_port# --unixsocket #redis_path# --unixsocketperm 600 --pidfile #redis_pid# --dir #redis_db_dir# --dbfilename
|
|
300
|
+
opts[:redis_cmd] ||= 'redis-server --port #redis_port# --unixsocket #redis_path# --unixsocketperm 600 --pidfile #redis_pid# --dir #redis_db_dir# --dbfilename #redis_db_name# --databases 1 --save 900 1 --save 300 10 --save 60 10000 --rdbcompression yes --daemonize yes --protected-mode no'
|
|
301
301
|
opts[:redis_pid] ||= 'redis.pid' # use e.g. /var/run/redis.pid if you do global. Look it up in your redis config
|
|
302
302
|
opts[:redis_db_name] ||= 'redis.rdb' # use e.g. /var/lib/redis.rdb for global stuff. Look it up in your redis config
|
|
303
303
|
|
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.1.
|
|
4
|
+
version: 1.1.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Juergen eTM Mangler
|
|
@@ -67,7 +67,7 @@ dependencies:
|
|
|
67
67
|
version: '2.1'
|
|
68
68
|
- - ">="
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
|
-
version: 2.1.
|
|
70
|
+
version: 2.1.114
|
|
71
71
|
type: :runtime
|
|
72
72
|
prerelease: false
|
|
73
73
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -77,7 +77,7 @@ dependencies:
|
|
|
77
77
|
version: '2.1'
|
|
78
78
|
- - ">="
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
|
-
version: 2.1.
|
|
80
|
+
version: 2.1.114
|
|
81
81
|
description: see http://cpee.org
|
|
82
82
|
email: juergen.mangler@gmail.com
|
|
83
83
|
executables:
|