From f5759c34ed847c1ca63a5305b17e8529ffbec830 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Tue, 20 Nov 2018 00:18:58 -0500 Subject: [PATCH] slash gotcha --- DozenPlz.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DozenPlz.cs b/DozenPlz.cs index 5263765..0d92c2e 100644 --- a/DozenPlz.cs +++ b/DozenPlz.cs @@ -18,7 +18,7 @@ namespace azure_functions_talk [FunctionName("DozenPlz")] public static async Task Run( - [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = "/dozen")] HttpRequest req, + [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = "dozen")] HttpRequest req, ILogger log) { var baseUrl = Environment.GetEnvironmentVariable("baseUrl");