summaryrefslogtreecommitdiff
path: root/caddytest
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2021-08-17 10:51:26 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2021-08-17 10:51:26 -0600
commit8a974a4f8f1628c0b74c3a19cb8f2d0b48123cca (patch)
tree1b4868dba493703955249621dab5d675b5206074 /caddytest
parent6bc87ea2ff50a962f16dfafeb125f0f947c1a885 (diff)
logging: Warn for deprecated single_field encoder
Diffstat (limited to 'caddytest')
-rw-r--r--caddytest/integration/reverseproxy_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/caddytest/integration/reverseproxy_test.go b/caddytest/integration/reverseproxy_test.go
index e6aff87..422f671 100644
--- a/caddytest/integration/reverseproxy_test.go
+++ b/caddytest/integration/reverseproxy_test.go
@@ -371,7 +371,7 @@ func TestReverseProxyHealthCheck(t *testing.T) {
reverse_proxy {
to localhost:2020
- health_path /health
+ health_uri /health
health_port 2021
health_interval 2s
health_timeout 5s
@@ -426,7 +426,7 @@ func TestReverseProxyHealthCheckUnixSocket(t *testing.T) {
reverse_proxy {
to unix/%s
- health_path /health
+ health_uri /health
health_port 2021
health_interval 2s
health_timeout 5s
@@ -481,7 +481,7 @@ func TestReverseProxyHealthCheckUnixSocketWithoutPort(t *testing.T) {
reverse_proxy {
to unix/%s
- health_path /health
+ health_uri /health
health_interval 2s
health_timeout 5s
}