Merge pull request 'fix: timeout Seq' (#15) from release/V1.0.0 into main
All checks were successful
Build and Deploy ASP.NET API / build-and-deploy (push) Successful in 1m37s
All checks were successful
Build and Deploy ASP.NET API / build-and-deploy (push) Successful in 1m37s
Reviewed-on: http://git.carneiro.ddnsfree.com/ricardo/YTExtractor/pulls/15
This commit is contained in:
commit
42d937f1af
@ -26,7 +26,8 @@ namespace YTExtractor.Logging.Configuration
|
|||||||
.Enrich.WithEnvironmentName()
|
.Enrich.WithEnvironmentName()
|
||||||
//.Enrich.WithMachineName()
|
//.Enrich.WithMachineName()
|
||||||
.Enrich.WithProperty("Application", "YTExtractor")
|
.Enrich.WithProperty("Application", "YTExtractor")
|
||||||
.Enrich.WithProperty("Workspace", workspace);
|
.Enrich.WithProperty("Workspace", workspace)
|
||||||
|
.WriteTo.Console();
|
||||||
|
|
||||||
// Testa a conectividade com o Seq se estiver configurado
|
// Testa a conectividade com o Seq se estiver configurado
|
||||||
if (!string.IsNullOrEmpty(seqServer))
|
if (!string.IsNullOrEmpty(seqServer))
|
||||||
@ -100,7 +101,7 @@ namespace YTExtractor.Logging.Configuration
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
using var httpClient = new HttpClient();
|
using var httpClient = new HttpClient();
|
||||||
httpClient.Timeout = TimeSpan.FromSeconds(2);
|
httpClient.Timeout = TimeSpan.FromSeconds(10);
|
||||||
var response = httpClient.GetAsync($"{seqUrl}/api").Result;
|
var response = httpClient.GetAsync($"{seqUrl}/api").Result;
|
||||||
|
|
||||||
if (response.IsSuccessStatusCode)
|
if (response.IsSuccessStatusCode)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user