case 4380
This commit is contained in:
@@ -21,9 +21,16 @@ namespace AyaNova.Biz
|
||||
#if (DEBUG)
|
||||
private static TimeSpan FAST_TRACK = new TimeSpan(0, 1, 0);
|
||||
private static TimeSpan SLOW_TRACK = new TimeSpan(0, 5, 0);
|
||||
#else
|
||||
#if (SUBSCRIPTION_BUILD)
|
||||
//subscription servers need to check more frequently because the month to month rentals could be dodgy when 24 hours
|
||||
//also it's all in-network so there is no downside or performance hit for this
|
||||
private static TimeSpan FAST_TRACK = new TimeSpan(0, 30, 0);
|
||||
private static TimeSpan SLOW_TRACK = new TimeSpan(0, 30, 0);
|
||||
#else
|
||||
private static TimeSpan FAST_TRACK = new TimeSpan(0, 30, 0);
|
||||
private static TimeSpan SLOW_TRACK = new TimeSpan(24, 0, 0);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user