Skip to content

Commit 0e543aa

Browse files
author
Tim Bradgate
committed
Add VB high seqno to handle slow stream log message
Change-Id: I0d7ba05ecf399303cbce5312c09c69bfaa503b6c Reviewed-on: http://review.couchbase.org/93489 Reviewed-by: Dave Rigby <[email protected]> Tested-by: Build Bot <[email protected]>
1 parent 084b8e8 commit 0e543aa

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

engines/ep/src/dcp/stream.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1602,11 +1602,14 @@ bool ActiveStream::handleSlowStream() {
16021602
", "
16031603
"lastSentSeqno : %" PRIu64
16041604
", "
1605+
"vBucketHighSeqno : %" PRIu64
1606+
", "
16051607
"isBackfillTaskRunning : %s",
16061608
vb_,
16071609
to_string(state_.load()).c_str(),
16081610
lastReadSeqno.load(),
16091611
lastSentSeqno.load(),
1612+
engine->getVBucket(vb_)->getHighSeqno(),
16101613
isBackfillTaskRunning.load() ? "True" : "False");
16111614

16121615
bool status = false;

0 commit comments

Comments
 (0)