From 5918b78c2b7be07a7318a1cfb5b27c44b256fadd Mon Sep 17 00:00:00 2001 From: Derek Argueta Date: Wed, 11 Sep 2019 10:12:05 -0700 Subject: [PATCH] fix link to runtime docs (#8204) Description: Looks like the runtime docs moved under operations/. The PR fixes the link. Risk Level: low Testing: existing Docs Changes: this Release Notes: n/a Signed-off-by: Derek Argueta --- source/common/protobuf/utility.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/protobuf/utility.cc b/source/common/protobuf/utility.cc index b52a716f321f..f2c94278313f 100644 --- a/source/common/protobuf/utility.cc +++ b/source/common/protobuf/utility.cc @@ -220,7 +220,7 @@ void MessageUtil::checkForUnexpectedFields(const Protobuf::Message& message, } else { const char fatal_error[] = " If continued use of this field is absolutely necessary, see " - "https://www.envoyproxy.io/docs/envoy/latest/configuration/runtime" + "https://www.envoyproxy.io/docs/envoy/latest/configuration/operations/runtime" "#using-runtime-overrides-for-deprecated-features for how to apply a temporary and " "highly discouraged override."; throw ProtoValidationException(err + fatal_error, message);