Skip to content
Snippets Groups Projects
Commit f728808d authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

SL-19690: Fix a lingering reference to WorkSchedule::postIfOpen()

parent d75ecde6
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
......@@ -216,7 +216,7 @@ bool LL::WorkSchedule::post(const Work& callable)
// the epoch because this WorkSchedule may contain a mix of past-due
// TimedWork items and TimedWork items scheduled for the future. Sift this
// new item into the correct place.
return postIfOpen(callable, TimePoint::clock::now());
return post(callable, TimePoint::clock::now());
}
bool LL::WorkSchedule::post(const Work& callable, const TimePoint& time)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment