Skip to content

Commit

Permalink
Removed slash / in _healthEndpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
nenad0707 committed Jun 8, 2024
1 parent cdaece8 commit 1db16bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TodoApi/Helpers/PingHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class PingHelper
public PingHelper(IHttpClientFactory httpClientFactory, IConfiguration configuration, IMemoryCache cache, ILogger<PingHelper> logger)
{
_httpClientFactory = httpClientFactory;
_healthEndpoint = configuration["ApiUrl"] + "/health";
_healthEndpoint = configuration["ApiUrl"] + "health";
_cache = cache;
_logger = logger;
}
Expand Down

0 comments on commit 1db16bd

Please sign in to comment.