This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Small clean up to error handling code
davidfowl/common-services
David Fowler
1 year ago
committed by
Reuben Bond
parent
a381a6923c
commit
34fc9496fd
1 changed files
with
4 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
src/Services/Basket/Basket.API/Program.cs
+ 4
- 1
src/Services/Basket/Basket.API/Program.cs
View File
@ -18,7 +18,10 @@ var app = builder.Build();
try
try
{
{
await
app
.
CheckHealthAsync
(
)
;
if
(
!
await
app
.
CheckHealthAsync
(
)
)
{
return
1
;
}
app
.
UseServiceDefaults
(
)
;
app
.
UseServiceDefaults
(
)
;
Write
Preview
Loading…
Cancel
Save