Skip to content

Commit 0cce666

Browse files
committed
MB-29287: Merge remote-tracking branch 'couchbase/spock'->vulcan
* couchbase/spock: MB-29287: Avoid ambiguity in ActiveStream cursor name Change-Id: I0d17c565aadfa14132abb183f5605ad42205f4e9
2 parents 49d69f5 + 071876c commit 0cce666

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engines/ep/src/dcp/stream.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ ActiveStream::ActiveStream(EventuallyPersistentEngine* e,
272272
includeXattributes(includeXattrs),
273273
includeDeleteTime(includeDeleteTime),
274274
filter(filter, manifest),
275-
cursorName(n + std::to_string(cursorUID.fetch_add(1))) {
275+
cursorName(n + '/' + std::to_string(cursorUID.fetch_add(1))) {
276276
const char* type = "";
277277
if (flags_ & DCP_ADD_STREAM_FLAG_TAKEOVER) {
278278
type = "takeover ";

0 commit comments

Comments
 (0)