From f477b0fbde02366358e078bbcc7f603196e3e44c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Onurkan=20Bak=C4=B1rc=C4=B1?= Date: Sat, 19 Mar 2022 22:04:12 +0300 Subject: [PATCH] Spelling mistakes in Identity.API -> Startup.cs In Startup.cs of Identity.API, there are spelling mistakes . --- src/Services/Identity/Identity.API/Startup.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Services/Identity/Identity.API/Startup.cs b/src/Services/Identity/Identity.API/Startup.cs index 99abdf25d..3834fc6a0 100644 --- a/src/Services/Identity/Identity.API/Startup.cs +++ b/src/Services/Identity/Identity.API/Startup.cs @@ -133,8 +133,8 @@ namespace Microsoft.eShopOnContainers.Services.Identity.API app.UseIdentityServer(); // Fix a problem with chrome. Chrome enabled a new feature "Cookies without SameSite must be secure", - // the coockies shold be expided from https, but in eShop, the internal communication in aks and docker compose is http. - // To avoid this problem, the policy of cookies shold be in Lax mode. + // the cookies should be expired from https, but in eShop, the internal communication in aks and docker compose is http. + // To avoid this problem, the policy of cookies should be in Lax mode. app.UseCookiePolicy(new CookiePolicyOptions { MinimumSameSitePolicy = AspNetCore.Http.SameSiteMode.Lax }); app.UseRouting();