Skip to content

Commit 0154632

Browse files
committed
MB-29287: Merge remote-tracking branch 'couchbase/watson_ep'->couchbase/5.1.0
* couchbase/watson_ep: MB-29287: Avoid ambiguity in ActiveStream cursor name Change-Id: Ibe84ac08bde0f463de1b536386c9c5958b16a78a
2 parents 2244309 + d3ea9f4 commit 0154632

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)