diff --git a/indra/llcommon/workqueue.h b/indra/llcommon/workqueue.h
index 46f7363830cdc6a4774d4c2b597eed2f8c492b3d..784327f92968d4fdc04974502649119c7da16c52 100644
--- a/indra/llcommon/workqueue.h
+++ b/indra/llcommon/workqueue.h
@@ -170,7 +170,7 @@ namespace LL
         template <typename CALLABLE>
         bool tryPost(CALLABLE&& callable)
         {
-            return mQueue.tryPost(TimePoint::clock::now(), std::move(callable));
+            return mQueue.tryPush(TimePoint::clock::now(), std::move(callable));
         }
 
         /*------------------------- handshake API --------------------------*/