2023-03-17 11:43:29 +01:00
|
|
|
|
namespace CodexDistTests.TestCore
|
|
|
|
|
{
|
|
|
|
|
public static class Timing
|
|
|
|
|
{
|
|
|
|
|
public static TimeSpan HttpCallTimeout()
|
|
|
|
|
{
|
|
|
|
|
return TimeSpan.FromMinutes(10);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void RetryDelay()
|
|
|
|
|
{
|
|
|
|
|
Utils.Sleep(TimeSpan.FromSeconds(3));
|
|
|
|
|
}
|
2023-03-19 08:22:38 +01:00
|
|
|
|
|
|
|
|
|
public static void WaitForServiceDelay()
|
|
|
|
|
{
|
|
|
|
|
Utils.Sleep(TimeSpan.FromSeconds(1));
|
|
|
|
|
}
|
2023-03-17 11:43:29 +01:00
|
|
|
|
}
|
|
|
|
|
}
|