Skip to content

Commit

Permalink
Merge pull request #217 from cloudfoundry/fix-template-error
Browse files Browse the repository at this point in the history
Fix bug template rendering bug when garden.debug_listen_address is no…
  • Loading branch information
MarcPaquette authored Feb 8, 2022
2 parents f351af8 + 08a394d commit 1429cfa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion jobs/garden/templates/config/config.ini.erb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ if p("garden.listen_network") == "tcp"
parse_ip(p('garden.listen_address'), 'garden.listen_address')
end
parse_ips(p('garden.deny_networks'), 'garden.deny_networks')
parse_ip(p('garden.debug_listen_address'), 'garden.debug_listen_address')

if_p("garden.debug_listen_address") do |addr|
parse_ip(addr, 'garden.debug_listen_address')
end

parse_ip(p('garden.network_pool'), 'garden.network_pool')
-%>

Expand Down

0 comments on commit 1429cfa

Please sign in to comment.