From 898586722cdb39038c86600331957dc4438e88dd Mon Sep 17 00:00:00 2001 From: Chris Ross Date: Fri, 1 Jun 2018 09:06:17 -0700 Subject: [PATCH] Update HttpsPort comments (#331) --- src/Microsoft.AspNetCore.HttpsPolicy/HttpsRedirectionOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.HttpsPolicy/HttpsRedirectionOptions.cs b/src/Microsoft.AspNetCore.HttpsPolicy/HttpsRedirectionOptions.cs index cc46b0155a..07a166c162 100644 --- a/src/Microsoft.AspNetCore.HttpsPolicy/HttpsRedirectionOptions.cs +++ b/src/Microsoft.AspNetCore.HttpsPolicy/HttpsRedirectionOptions.cs @@ -22,7 +22,7 @@ namespace Microsoft.AspNetCore.HttpsPolicy /// If the HttpsPort is not set, we will try to get the HttpsPort from the following: /// 1. HTTPS_PORT environment variable /// 2. IServerAddressesFeature - /// 3. 443 (or not set) + /// If that fails then the middleware will log a warning and turn off. /// public int? HttpsPort { get; set; } }