summaryrefslogtreecommitdiff
path: root/indra/llcommon/workqueue.cpp
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-05-08 12:45:27 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-05-08 12:45:27 -0400
commitf728808d938666a01f73a039c861358fc4b02a9e (patch)
tree63bd265a7c7e686d51ce653de450ca8d518d6502 /indra/llcommon/workqueue.cpp
parentd75ecde69c1289f4e3df8b75e9a74c5b05db318c (diff)
SL-19690: Fix a lingering reference to WorkSchedule::postIfOpen()
Diffstat (limited to 'indra/llcommon/workqueue.cpp')
-rw-r--r--indra/llcommon/workqueue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/workqueue.cpp b/indra/llcommon/workqueue.cpp
index 5a77d517dd..cf80ce0656 100644
--- a/indra/llcommon/workqueue.cpp
+++ b/indra/llcommon/workqueue.cpp
@@ -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)