SL-17219: WorkQueue::tryPost() must call ThreadSafeSchedule::tryPush().
We inadvertently changed tryPost() to call ThreadSafeSchedule::tryPost(), which doesn't exist.master
parent
b6841d75c2
commit
72ddfbd76e
|
|
@ -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 --------------------------*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue