Skip to content

Commit 903fb8e

Browse files
author
Rick Anderson
committed
Remove warning about catch-all bug in 5.0 version
1 parent 6fafc7c commit 903fb8e

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

aspnetcore/fundamentals/routing.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,6 @@ Due to the kinds of extensibility provided by routing, it isn't possible for the
323323
>
324324
> * Doesn't have a concept of routes.
325325
> * Doesn't provide ordering guarantees. All endpoints are processed at once.
326-
>
327-
> If this means you're stuck using the legacy routing system, [open a GitHub issue for assistance](https://github.com/dotnet/aspnetcore/issues).
328326
329327
<a name="rtp"></a>
330328

aspnetcore/includes/catchall.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
::: moniker range=">= aspnetcore-3.0 < aspnetcore-5.0"
2+
13
> [!WARNING]
24
> A **catch-all** parameter may match routes incorrectly due to a [bug](https://github.com/dotnet/aspnetcore/issues/18677) in routing. Apps impacted by this bug have the following characteristics:
35
>
@@ -17,4 +19,6 @@
1719
> CreateHostBuilder(args).Build().Run();
1820
>}
1921
>// Remaining code removed for brevity.
20-
>```
22+
>```
23+
24+
::: moniker-end

0 commit comments

Comments
 (0)