From 225f13087166181b71baa991b5528af09cffa478 Mon Sep 17 00:00:00 2001 From: Jaykumar Gosar Date: Fri, 10 Dec 2021 10:23:40 -0800 Subject: [PATCH] Add doc for missing segment when greedy label in middle --- docs/source/1.0/spec/core/http-traits.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/1.0/spec/core/http-traits.rst b/docs/source/1.0/spec/core/http-traits.rst index 98ba9a6aaca..23468435747 100644 --- a/docs/source/1.0/spec/core/http-traits.rst +++ b/docs/source/1.0/spec/core/http-traits.rst @@ -404,6 +404,10 @@ pattern of ``/prefix/{label+}/suffix`` and an endpoint of ``https://yourhost``: - Yes - Matches literal "/prefix", captures "foo/suffix/bar" in greedy ``label``, and matches literal "/suffix". + * - ``http://yourhost/prefix/suffix`` + - No + - Matches literal "/prefix", matches literal "/suffix", but does not + contain a segment to match ``label``. Pattern Validation and Conflict Avoidance