mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-05 23:13:08 +00:00
16 lines
309 B
C#
16 lines
309 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));
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|