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