mirror of
https://github.com/Radarr/Radarr
synced 2026-04-29 02:43:15 +02:00
19 lines
387 B
C#
19 lines
387 B
C#
namespace NzbDrone.Core.ThingiProvider.Status
|
|
{
|
|
public static class EscalationBackOff
|
|
{
|
|
public static readonly int[] Periods =
|
|
{
|
|
0,
|
|
60,
|
|
5 * 60,
|
|
15 * 60,
|
|
30 * 60,
|
|
60 * 60,
|
|
3 * 60 * 60,
|
|
6 * 60 * 60,
|
|
12 * 60 * 60,
|
|
24 * 60 * 60
|
|
};
|
|
}
|
|
}
|