From f728808d938666a01f73a039c861358fc4b02a9e Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Mon, 8 May 2023 12:45:27 -0400
Subject: [PATCH] SL-19690: Fix a lingering reference to
 WorkSchedule::postIfOpen()

---
 indra/llcommon/workqueue.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llcommon/workqueue.cpp b/indra/llcommon/workqueue.cpp
index 5a77d517dd0..cf80ce0656d 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)
-- 
GitLab