This commit is contained in:
2021-08-06 15:42:56 +00:00
parent 1797263d06
commit a7cc4ba888
4 changed files with 8 additions and 8 deletions

View File

@@ -24,9 +24,9 @@ namespace AyaNova.Biz
private static TimeSpan TS_24_HOURS = new TimeSpan(24, 0, 0);//used to ensure daily ops happen no more than that
#if (DEBUG)
private static TimeSpan RUN_EVERY_INTERVAL = new TimeSpan(0, 0, 20);//no more frequently than once every 20 seconds
private static TimeSpan RUN_EVERY_INTERVAL = new TimeSpan(0, 0, 21);//no more frequently than once every 20 seconds
#else
private static TimeSpan RUN_EVERY_INTERVAL = new TimeSpan(0, 2, 0);//no more frequently than once every 2 minutes
private static TimeSpan RUN_EVERY_INTERVAL = new TimeSpan(0, 2, 5);//no more frequently than once every 2 minutes
#endif
////////////////////////////////////////////////////////////////////////////////////////////////