Skip to content

Commit

Permalink
Reverts change of Passenger variables to lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
paulasaurus committed Jun 15, 2020
1 parent 632ad82 commit fa68e30
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions cookbooks/passenger5/recipes/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,18 +55,12 @@
group ssh_username
mode 0755
backup 0
variables(
lazy {
{
:user => ssh_username,
:app_name => app.name,
:version => version,
:port => app_base_port,
:worker_count => recipe.get_pool_size,
:rails_env => framework_env
}
}
)
variables(:user => ssh_username,
:app_name => app.name,
:version => version,
:port => app_base_port,
:worker_count => recipe.get_pool_size,
:rails_env => framework_env)
end

# Setup log rotate for passenger.log
Expand Down

0 comments on commit fa68e30

Please sign in to comment.