2
0
mirror of synced 2025-01-19 13:02:05 +00:00
2023-03-19 08:22:38 +01:00

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));
}
}
}