Fix macOS CI broken by #6449.

foundationdb/fdbserver/CoroFlow.actor.cpp:262:8: error: no member named 'errorUnsuppressed' in 'BaseTraceEvent'
This commit is contained in:
Renxuan Wang 2022-02-24 19:13:24 -08:00 committed by Jingyu Zhou
parent 0bdae35a2c
commit 3a3b44efe2
1 changed files with 2 additions and 2 deletions

View File

@ -256,10 +256,10 @@ public:
pool->queueLock.enter();
TraceEvent("WorkPool_Stop")
.errorUnsuppressed(e)
.detail("Workers", pool->workers.size())
.detail("Idle", pool->idle.size())
.detail("Work", pool->work.size())
.errorUnsuppressed(e);
.detail("Work", pool->work.size());
for (uint32_t i = 0; i < pool->work.size(); i++)
pool->work[i]->cancel(); // What if cancel() does something to this?