Commit 2d571067e8257346adc6d5a32e58d94b22b7cce9
1 parent
49ec038d
Exists in
master
and in
23 other branches
Stop solr *after* the application server stopped
Services must be stopped in an order that is the reverse of the order in which they are started.
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
script/production
| ... | ... | @@ -34,8 +34,6 @@ do_start() { |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | do_stop() { |
| 37 | - rake -s solr:stop | |
| 38 | - | |
| 39 | 37 | # During Debian upgrades, it is possible that rails is not available (e.g. |
| 40 | 38 | # Lenny -> Squeeze), so the programs below might fail. If they do, we fall |
| 41 | 39 | # back to stopping the daemons by manually reading their PID files, killing |
| ... | ... | @@ -46,6 +44,8 @@ do_stop() { |
| 46 | 44 | |
| 47 | 45 | environments_loop stop || |
| 48 | 46 | stop_via_pid_file tmp/pids/delayed_job.pid tmp/pids/delayed_job.*.pid tmp/pids/feed-updater.*.pid |
| 47 | + | |
| 48 | + rake -s solr:stop || stop_via_pid_file tmp/pids/solr.*.pid | |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | stop_via_pid_file() { | ... | ... |