Commit 16b0b79197043626dbdd0e8f9ed7b719781fd8e9:
allow passenger time to exit
Branch: refs/heads/master
Author: Sam Ruby <[email protected]>
Committer: Sam Ruby <[email protected]>
Pusher: rubys <[email protected]>
------------------------------------------------------------
www/roster/Rakefile | ++ -
------------------------------------------------------------
3 changes: 2 additions, 1 deletions.
------------------------------------------------------------
diff --git a/www/roster/Rakefile b/www/roster/Rakefile
index 323029b..23ac90f 100644
--- a/www/roster/Rakefile
+++ b/www/roster/Rakefile
@@ -3,7 +3,8 @@ Bundler.require(:default, :development)
task :server => :listen do
ENV['RACK_ENV']='development'
- sh 'passenger start'
+ at_exit {sleep 0.5}
+ sh 'bundle exec passenger start'
end
task :listen do