mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
enough with the malloc limit, not needed
This commit is contained in:
@@ -43,7 +43,7 @@ end
|
||||
namespace :deploy do
|
||||
desc 'Start thin servers'
|
||||
task :start, :roles => :app, :except => { :no_release => true } do
|
||||
run "cd #{current_path} && RUBY_GC_MALLOC_LIMIT=90000000 bundle exec thin -C config/thin.yml start", :pty => false
|
||||
run "cd #{current_path} && bundle exec thin -C config/thin.yml start", :pty => false
|
||||
end
|
||||
|
||||
desc 'Stop thin servers'
|
||||
@@ -53,7 +53,7 @@ namespace :deploy do
|
||||
|
||||
desc 'Restart thin servers'
|
||||
task :restart, :roles => :app, :except => { :no_release => true } do
|
||||
run "cd #{current_path} && RUBY_GC_MALLOC_LIMIT=90000000 bundle exec thin -C config/thin.yml restart"
|
||||
run "cd #{current_path} && bundle exec thin -C config/thin.yml restart"
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user