Skip to content

Commit 071876c

Browse files
committed
MB-29287: Merge remote-tracking branch 'couchbase/5.1.0'->spock
* couchbase/5.1.0: MB-29287: Avoid ambiguity in ActiveStream cursor name Change-Id: If8b91561e9e1b2561da1b4d53d0f1f3cd646dddd
2 parents b8da5d3 + 0154632 commit 071876c

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
@@ -269,7 +269,7 @@ ActiveStream::ActiveStream(EventuallyPersistentEngine* e,
269269
includeValue(includeVal),
270270
includeXattributes(includeXattrs),
271271
filter(std::move(filter)),
272-
cursorName(n + std::to_string(cursorUID.fetch_add(1))) {
272+
cursorName(n + '/' + std::to_string(cursorUID.fetch_add(1))) {
273273
const char* type = "";
274274
if (flags_ & DCP_ADD_STREAM_FLAG_TAKEOVER) {
275275
type = "takeover ";

0 commit comments

Comments
 (0)