subspace 2.3.0 → 2.3.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 50c74536ff3fc20a7730591b63c47fa9773e1095bd463d53eb3957b7dba51b2c
|
|
4
|
+
data.tar.gz: 72da343c7309a8724c6ee9d05aa2b7c8b8a3e196908bb27c187b8f00d2506df0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2918d316fb057dbff91d6ca706b3dc03a6bd86dabf37bfd7b65f5be9aa0f759ecbf7deb3edece400980a19a8329a72a59f0564f075966f92c03985436696b633
|
|
7
|
+
data.tar.gz: 1dc18633e071cd577a5a5ce74ad657069db557193cdcf78286f6ce1fc2144df74ddc09d839c86f7778de0fc78bc3a8f379a7ad3f247b8dca577e57a6e7078004
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,9 @@ This project attempts to follow [semantic versioning](https://semver.org/)
|
|
|
10
10
|
* Not working on OSX - macs don't read from /etc/profile.d/
|
|
11
11
|
* Stops showing color if you `sudo su`
|
|
12
12
|
|
|
13
|
+
## 2.3.1
|
|
14
|
+
* Sidekiq concurrency actually works
|
|
15
|
+
|
|
13
16
|
## 2.3.0
|
|
14
17
|
* Grab linux kernel to send as stats
|
|
15
18
|
* Grab psql version to send as stats
|
|
@@ -4,7 +4,7 @@ This server brought to you by:
|
|
|
4
4
|
\___ \| | | | '_ \___ \| '_ \ / _` |/ __/ _ \
|
|
5
5
|
___) | |_| | |_) |__) | |_) | (_| | (_| __/
|
|
6
6
|
|____/ \__,_|_.__/____/| .__/ \__,_|\___\___|
|
|
7
|
-
|_| v2.3.
|
|
7
|
+
|_| v2.3.1
|
|
8
8
|
~~~ https://github.com/tenforwardconsulting/subspace ~~~
|
|
9
9
|
|
|
10
10
|
If you need to make configuration changes to the server, please modify the
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
---
|
|
2
|
-
sidekiq_concurrency:
|
|
2
|
+
sidekiq_concurrency: 10
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
check process sidekiq
|
|
2
2
|
with pidfile /u/apps/{{project_name}}/shared/tmp/pids/sidekiq.pid
|
|
3
|
-
start program = "/bin/su - deploy -c 'cd /u/apps/{{project_name}}/current && bundle exec sidekiq --queue {{hostname}} {{ job_queues | map('regex_replace', '^(.*)$', '--queue \\1') | join(' ') }} --pidfile /u/apps/{{project_name}}/shared/tmp/pids/sidekiq.pid --environment {{rails_env}} --logfile /u/apps/{{project_name}}/shared/log/sidekiq.log --daemon'" with timeout 30 seconds
|
|
3
|
+
start program = "/bin/su - deploy -c 'cd /u/apps/{{project_name}}/current && bundle exec sidekiq --queue {{hostname}} {{ job_queues | map('regex_replace', '^(.*)$', '--queue \\1') | join(' ') }} -c {{sidekiq_concurrency}} --pidfile /u/apps/{{project_name}}/shared/tmp/pids/sidekiq.pid --environment {{rails_env}} --logfile /u/apps/{{project_name}}/shared/log/sidekiq.log --daemon'" with timeout 30 seconds
|
|
4
4
|
stop program = "/bin/su - deploy -c 'kill -s TERM `cat /u/apps/{{project_name}}/shared/tmp/pids/sidekiq.pid`'" with timeout 30 seconds
|
data/lib/subspace/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: subspace
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Samson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-10-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|