@@ -244,8 +244,8 @@ void ActiveStream::completeBackfill() {
244
244
isBackfillTaskRunning = false ;
245
245
LOG (EXTENSION_LOG_WARNING, " %s (vb %d) Backfill complete, %d items read"
246
246
" from disk %d from memory, last seqno read: %ld" ,
247
- producer->logHeader (), vb_, backfillItems.disk ,
248
- backfillItems.memory , lastReadSeqno);
247
+ producer->logHeader (), vb_, backfillItems.disk . load () ,
248
+ backfillItems.memory . load () , lastReadSeqno);
249
249
250
250
if (!itemsReady) {
251
251
itemsReady = true ;
@@ -545,7 +545,7 @@ void ActiveStream::endStream(end_stream_status_t reason) {
545
545
transitionState (STREAM_DEAD);
546
546
LOG (EXTENSION_LOG_WARNING, " %s (vb %d) Stream closing, %llu items sent"
547
547
" from backfill phase, %llu items sent from memory phase, %llu was "
548
- " last seqno sent" , producer->logHeader (), vb_, backfillItems.sent ,
548
+ " last seqno sent" , producer->logHeader (), vb_, backfillItems.sent . load () ,
549
549
itemsFromMemoryPhase, lastSentSeqno);
550
550
}
551
551
}
0 commit comments