case 4380

This commit is contained in:
2023-01-25 00:09:41 +00:00
parent 7bd238afc3
commit 3636bdacb1
2 changed files with 11 additions and 0 deletions

View File

@@ -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
////////////////////////////////////////////////////////////////////////////////////////////////