mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-11 01:43:07 +00:00
21 lines
429 B
C#
21 lines
429 B
C#
namespace CodexDistTests.TestCore
|
|
{
|
|
public static class Timing
|
|
{
|
|
public static TimeSpan HttpCallTimeout()
|
|
{
|
|
return TimeSpan.FromMinutes(10);
|
|
}
|
|
|
|
public static void RetryDelay()
|
|
{
|
|
Utils.Sleep(TimeSpan.FromSeconds(3));
|
|
}
|
|
|
|
public static void WaitForServiceDelay()
|
|
{
|
|
Utils.Sleep(TimeSpan.FromSeconds(1));
|
|
}
|
|
}
|
|
}
|