Skip to content

Commit

Permalink
Merge pull request #184 from engineyard/bug/TEY-218-passenger-lazy-va…
Browse files Browse the repository at this point in the history
…riables-reversion

[TEY-218] Reverts change of Passenger variables to lazy
  • Loading branch information
mushyy authored Jun 15, 2020
2 parents 632ad82 + fa68e30 commit 41d8ecf
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 41d8ecf

Please sign in to comment.