Skip to content

Commit

Permalink
fix: display complete request URL in endpoint-tests report
Browse files Browse the repository at this point in the history
  • Loading branch information
themightychris committed Oct 5, 2019
1 parent 4aecb4c commit f4206b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site-root/health/endpoint-tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<td><?=$Endpoint->Path?></td>
<td><?=$Endpoint->PingURI?></td>
<td><?=$Endpoint->PingTestPattern?></td>
<td><?=($url || '')?></td>
<td><?=($url ?: '')?></td>
<td><?=($response ? $response['info']['http_code'] : '')?></td>
<td><?=($response ? (strlen($response['body']) . ' bytes') : '')?></td>
<td><?=($testPassed === null ? '' : ($testPassed ? 'Y' : 'N'))?></td>
Expand Down

0 comments on commit f4206b3

Please sign in to comment.