Aditya Mandaleeka
Aditya Mandaleeka
(Reported by @richardd2 here: https://github.com/dotnet/AspNetCore.Docs/issues/23733#issuecomment-1309996000) We have a Windows Server 2019 VM hosting (currently) 15 instances of an API, all based on identical code. They're all configured with separate AppPools,...
Creating a top-level issue for us to track the ongoing work to modernize/refresh eShop. - [x] https://github.com/dotnet-architecture/eShopOnContainers/pull/2064 - [x] https://github.com/dotnet-architecture/eShopOnContainers/issues/2069 - [x] https://github.com/dotnet-architecture/eShopOnContainers/issues/2076 - [x] https://github.com/dotnet-architecture/eShopOnContainers/issues/2077 - [x] https://github.com/dotnet-architecture/eShopOnContainers/issues/2093 -...
This isn't a bug (hopefully) but the checkout process currently deletes the basket twice. Once via the webapp and once via the basket API once the order process has started....
Would be interesting to see how much traffic we can handle with this architecture and where things start to break down.
From @ReubenBond: Currently, there are many integration events which have duplicated representations across projects, which makes the complex Order processing flow even more complex because developers cannot use tooling to...
From @danroth27: Repro steps: - Run the web app and browse to a page with less than three products, like https://localhost:7298/?type=4&brand=1 Expected result: Products are rendered the same size as...
From @captainsafia See https://github.com/dotnet/aspnet-api-versioning
From @davidfowl Clean up all of the extraneous content, the extra content globs etc.
From @ReubenBond: Currently, each project which needs a representation of an Order has its own representation. This makes refactoring complex and it leads to inconsistencies. Instead, we should have one...
From @danroth27 > The web app configures the exception handling middleware to route requests to /Error: > > ```csharp > if (!app.Environment.IsDevelopment()) > { > app.UseExceptionHandler("/Error"); > // The default...