Skip to content
This repository has been archived by the owner on May 22, 2018. It is now read-only.

Commit

Permalink
fix(healthcheck): Escape HTTP headers value
Browse files Browse the repository at this point in the history
  • Loading branch information
brasseld committed Feb 13, 2018
1 parent 0d72658 commit 5638011
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -29,7 +29,7 @@
<#list step.getRequest().getHeaders() as headerKey, headerValue>
"${headerKey}": [
<#list headerValue as value>
"${value}"
"${value?j_string}"
<#sep>,</#sep>
</#list>
]
Expand All @@ -48,7 +48,7 @@
<#list step.getResponse().getHeaders() as headerKey, headerValue>
"${headerKey}": [
<#list headerValue as value>
"${value}"
"${value?j_string}"
<#sep>,</#sep>
</#list>
]
Expand Down

0 comments on commit 5638011

Please sign in to comment.