mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-14 13:07:28 +00:00
Merge branch 'feat/action-scheduler' of Common/Utils into dev
This commit is contained in:
commit
aa7a924d2b
1 changed files with 2 additions and 2 deletions
|
|
@ -99,7 +99,7 @@ namespace ICD.Common.Utils.Services.Scheduler
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
actionsToRun = m_Actions
|
actionsToRun = m_Actions
|
||||||
.Where(a => a.NextRunTime < DateTime.Now)
|
.Where(a => a.NextRunTime < IcdEnvironment.GetLocalTime())
|
||||||
.OrderBy(a => a.NextRunTime)
|
.OrderBy(a => a.NextRunTime)
|
||||||
.ToArray();
|
.ToArray();
|
||||||
}
|
}
|
||||||
|
|
@ -137,7 +137,7 @@ namespace ICD.Common.Utils.Services.Scheduler
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
long msToNextAction = (long)(action.NextRunTime.Value - DateTime.Now).TotalMilliseconds;
|
long msToNextAction = (long)(action.NextRunTime.Value - IcdEnvironment.GetLocalTime()).TotalMilliseconds;
|
||||||
m_Timer.Reset(msToNextAction);
|
m_Timer.Reset(msToNextAction);
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue