From c419caaffab0221bcd1905d2ba2815b639927320 Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Mon, 12 Aug 2019 11:08:19 +0200 Subject: [PATCH] AtPriority --- Proxying.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Proxying.md b/Proxying.md index 480b6a2..3686037 100644 --- a/Proxying.md +++ b/Proxying.md @@ -48,8 +48,8 @@ server .Given( Request.Create() .WithPath("/*") - .AtPriority(10) ) + .AtPriority(10) .RespondWith( Response.Create() .WithProxy("http://otherhost.com") @@ -60,8 +60,8 @@ server .Given( Request.Create() .WithPath("/api/override/123") - .AtPriority(1) ) + .AtPriority(1) .RespondWith( Response.Create() .WithStatusCode(503)