From c8c43f2c10fe95d0a373d23a70e79ecd3d91f9f7 Mon Sep 17 00:00:00 2001 From: Hannah Hunter Date: Thu, 13 Jul 2023 13:57:41 -0400 Subject: [PATCH] remove invalid code line Signed-off-by: Hannah Hunter --- .../dotnet-sdk-docs/dotnet-actors/dotnet-actors-howto.md | 8 -------- 1 file changed, 8 deletions(-) diff --git a/daprdocs/content/en/dotnet-sdk-docs/dotnet-actors/dotnet-actors-howto.md b/daprdocs/content/en/dotnet-sdk-docs/dotnet-actors/dotnet-actors-howto.md index 986562ca8..5b79d6b8f 100644 --- a/daprdocs/content/en/dotnet-sdk-docs/dotnet-actors/dotnet-actors-howto.md +++ b/daprdocs/content/en/dotnet-sdk-docs/dotnet-actors/dotnet-actors-howto.md @@ -306,14 +306,6 @@ namespace MyActorService { app.UseDeveloperExceptionPage(); } - else - { - // By default, ASP.Net Core uses port 5000 for HTTP. The HTTP - // redirection will interfere with the Dapr runtime. You can - // move this out of the else block if you use port 5001 in this - // example, and developer tooling (such as the VSCode extension). - app.UseHttpsRedirection(); - } app.UseRouting();