Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions jobs/web/spec
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ properties:
Port on which to listen for the pprof debugger endpoints.
default: 8079

debug.godebug:
env: GODEBUG
description: |
A list of name=value pairs separated by commas, where each name is a runtime debugging facility.

external_url:
env: CONCOURSE_EXTERNAL_URL
description: |
Expand Down
4 changes: 4 additions & 0 deletions jobs/web/templates/bpm.yml.erb
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,10 @@ processes:
CONCOURSE_DEBUG_BIND_PORT: <%= env_flag(v).to_json %>
<% end -%>

<% if_p("debug.godebug") do |v| -%>
GODEBUG: <%= env_flag(v).to_json %>
<% end -%>

<% if_p("default_check_interval") do |v| -%>
CONCOURSE_RESOURCE_CHECKING_INTERVAL: <%= env_flag(v).to_json %>
<% end -%>
Expand Down