Skip to content

Commit 7fe643f

Browse files
committed
Merge branch 'order-processflow-redesign' of https://github.com/dotnet-architecture/eShopOnContainers into order-processflow-redesign
# Conflicts: # eShopOnContainers-ServicesAndWebApps.sln # src/Services/Basket/Basket.API/Controllers/BasketController.cs # src/Services/Basket/Basket.API/Startup.cs
1 parent af24e35 commit 7fe643f

3 files changed

Lines changed: 1 addition & 19 deletions

File tree

eShopOnContainers-ServicesAndWebApps.sln

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SagaManager", "SagaManager"
8484
EndProject
8585
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SagaManager", "src\Services\SagaManager\SagaManager\SagaManager.csproj", "{F6E0F0DD-1400-43C3-B5E0-7CC325728C47}"
8686
EndProject
87-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.HealthChecks", "src\BuildingBlocks\HealthChecks\src\Microsoft.AspNetCore.HealthChecks\Microsoft.AspNetCore.HealthChecks.csproj", "{22A0F9C1-2D4A-4107-95B7-8459E6688BC5}"
88-
EndProject
89-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Extensions.HealthChecks.SqlServer", "src\BuildingBlocks\HealthChecks\src\Microsoft.Extensions.HealthChecks.SqlServer\Microsoft.Extensions.HealthChecks.SqlServer.csproj", "{4BD76717-3102-4969-8C2C-BAAA3F0263B6}"
90-
EndProject
91-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EventBus.Tests", "src\BuildingBlocks\EventBus\EventBus.Tests\EventBus.Tests.csproj", "{4A980AC4-7205-46BF-8CCB-09E44D700FD4}"
92-
EndProject
9387
Global
9488
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9589
Ad-Hoc|Any CPU = Ad-Hoc|Any CPU
@@ -1152,8 +1146,5 @@ Global
11521146
{4A980AC4-7205-46BF-8CCB-09E44D700FD4} = {807BB76E-B2BB-47A2-A57B-3D1B20FF5E7F}
11531147
{F38B4FF0-0B49-405A-B1B4-F7A5E3BC4C4E} = {91CF7717-08AB-4E65-B10E-0B426F01E2E8}
11541148
{F6E0F0DD-1400-43C3-B5E0-7CC325728C47} = {F38B4FF0-0B49-405A-B1B4-F7A5E3BC4C4E}
1155-
{22A0F9C1-2D4A-4107-95B7-8459E6688BC5} = {A81ECBC2-6B00-4DCD-8388-469174033379}
1156-
{4BD76717-3102-4969-8C2C-BAAA3F0263B6} = {A81ECBC2-6B00-4DCD-8388-469174033379}
1157-
{4A980AC4-7205-46BF-8CCB-09E44D700FD4} = {807BB76E-B2BB-47A2-A57B-3D1B20FF5E7F}
11581149
EndGlobalSection
11591150
EndGlobal

src/Services/Ordering/Ordering.API/Startup.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -186,15 +186,6 @@ private void ConfigureEventBus(IApplicationBuilder app)
186186

187187
}
188188

189-
private void ConfigureEventBus(IApplicationBuilder app)
190-
{
191-
var eventBus = app.ApplicationServices.GetRequiredService<IEventBus>();
192-
eventBus.SubscribeDynamic(
193-
"UserCheckoutAccepted",
194-
() => app.ApplicationServices.GetRequiredService<UserCheckoutAcceptedIntegrationEventHandler>());
195-
196-
}
197-
198189
protected virtual void ConfigureAuth(IApplicationBuilder app)
199190
{
200191
var identityUrl = Configuration.GetValue<string>("IdentityUrl");

src/Services/SagaManager/SagaManager/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"Microsoft": "Information"
88
}
99
},
10-
"ConnectionString": "Server=sql.data;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word"
10+
"ConnectionString": "Server=tcp:127.0.0.1,5433;Database=Microsoft.eShopOnContainers.Services.OrderingDb;User Id=sa;Password=Pass@word;"
1111
}

0 commit comments

Comments
 (0)