standup 0.3.36 → 0.3.37
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/scripts/resque/resque_monit.conf +2 -8
- data/standup.gemspec +2 -2
- metadata +4 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.37
|
@@ -2,16 +2,10 @@
|
|
2
2
|
<%1.upto(num_of_workers) do |num|%>
|
3
3
|
check process resque_<%= queue_name %>_<%= num %>
|
4
4
|
with pidfile <%= scripts.webapp.app_path%>/tmp/pids/resque_<%= queue_name %>_<%=num %>.pid
|
5
|
-
start program = "/bin/
|
6
|
-
stop program = "/bin/
|
5
|
+
start program = "/bin/bash -c 'cd <%= scripts.webapp.app_path%>; RAILS_ENV=<%= scripts.webapp.params.rails_env%> script/resque <%= queue_name %> <%=num %>'"
|
6
|
+
stop program = "/bin/bash -c 'cd <%= scripts.webapp.app_path%> && kill -s QUIT `cat tmp/pids/resque_<%= queue_name %>_<%=num %>.pid` && rm -f tmp/pids/resque_<%= queue_name %>_<%=num %>.pid; exit 0;'"
|
7
7
|
if totalmem is greater than 300 MB for 10 cycles then restart
|
8
8
|
group resque
|
9
9
|
|
10
10
|
<% end %>
|
11
11
|
<% end %>
|
12
|
-
|
13
|
-
#check process resque
|
14
|
-
# with pidfile <%= scripts.webapp.app_path%>/tmp/pids/resque.pid
|
15
|
-
# start program = "/bin/sh -c 'cd <%= scripts.webapp.app_path%>; RAILS_ENV=<%= scripts.webapp.params.rails_env%> script/resque'"
|
16
|
-
# stop program = "/bin/sh -c 'cd <%= scripts.webapp.app_path%> && kill -s QUIT `cat tmp/pids/resque.pid` && rm -f tmp/pids/resque.pid; exit 0;'"
|
17
|
-
# if totalmem is greater than 300 MB for 10 cycles then restart
|
data/standup.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{standup}
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.37"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Ilia Ablamonov", "Artem Orlov", "Cloud Castle Inc."]
|
12
|
-
s.date = %q{2011-
|
12
|
+
s.date = %q{2011-06-02}
|
13
13
|
s.default_executable = %q{standup}
|
14
14
|
s.email = %q{ilia@flamefork.ru}
|
15
15
|
s.executables = ["standup"]
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 89
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 37
|
10
|
+
version: 0.3.37
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ilia Ablamonov
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2011-
|
20
|
+
date: 2011-06-02 00:00:00 +04:00
|
21
21
|
default_executable: standup
|
22
22
|
dependencies:
|
23
23
|
- !ruby/object:Gem::Dependency
|