replace dependencies and last works ...

This commit is contained in:
2026-04-16 16:11:59 +03:30
parent 34fb077e8b
commit 96c18db58e
2 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -162,7 +162,7 @@ namespace xIdentityService.Providers
//
// Set Default Timeout ...
httpClient.Timeout = TimeSpan.FromSeconds(DefaultClientTimeout);
httpClient.Timeout = TimeSpan.FromSeconds(DefaultClientTimeout == -1 ? 10000 : DefaultClientTimeout);
//
return httpClient;