increases default timeset timeouts

This commit is contained in:
ThatBen 2025-07-09 16:00:40 +02:00
parent ade1d9943d
commit 90586dce5c
No known key found for this signature in database
GPG Key ID: 62C543548433D43E
3 changed files with 4 additions and 4 deletions

View File

@ -23,12 +23,12 @@
{
public TimeSpan HttpCallTimeout()
{
return TimeSpan.FromMinutes(2);
return TimeSpan.FromMinutes(5);
}
public TimeSpan HttpRetryTimeout()
{
return TimeSpan.FromMinutes(5);
return TimeSpan.FromMinutes(20);
}
public TimeSpan HttpCallRetryDelay()

View File

@ -19,7 +19,7 @@ namespace CodexReleaseTests.DataTests
try
{
node.DownloadContent(unknownCid);
node.DownloadContent(unknownCid, TimeSpan.FromMinutes(2.0));
}
catch (Exception ex)
{

View File

@ -274,7 +274,7 @@ namespace DistTestCore
private string GetCurrentTestName()
{
return $"[{NameUtils.GetTestMethodName()}]";
return $"[{NameUtils.GetRawFixtureName()}:{NameUtils.GetTestMethodName()}]";
}
public DistTestResult GetTestResult()