From be987f38335c993606bf1ac4223156e2a399da0e Mon Sep 17 00:00:00 2001 From: S0n98 <62588093+S0n98@users.noreply.github.com> Date: Tue, 29 Nov 2022 01:10:14 +0700 Subject: [PATCH] docs: correct syntax of canary setMirrorRoute's value (#2431) Fix wrong syntax of spec.strategy.canary.steps[setMirrorRoute].match.path.regex and spec.strategy.canary.steps[setMirrorRoute].match.path.prefix --- docs/features/specification.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/features/specification.md b/docs/features/specification.md index b2388cdfcb..4a78a2818c 100644 --- a/docs/features/specification.md +++ b/docs/features/specification.md @@ -313,8 +313,8 @@ spec: prefix: "POST" path: # What HTTP url paths to match. exact: "/test" - regex: ""/test/.*" - prefix: ""/" + regex: "/test/.*" + prefix: "/" headers: agent-1b: # What HTTP header name to use in the match. exact: "firefox"