From 5dcae0e6e650c4ba51aea01443cfe09adc532707 Mon Sep 17 00:00:00 2001 From: Boaz Leskes Date: Fri, 25 Jan 2019 17:07:44 +0100 Subject: [PATCH] Remove statement about search and optimistic concurrency control from 6.6 docs This turned out to not be true and is tackled by #37639 . That PR will be part of 6.7 --- docs/reference/docs/concurrency-control.asciidoc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/reference/docs/concurrency-control.asciidoc b/docs/reference/docs/concurrency-control.asciidoc index e695e6b5127c9..fe55303eb88b5 100644 --- a/docs/reference/docs/concurrency-control.asciidoc +++ b/docs/reference/docs/concurrency-control.asciidoc @@ -85,10 +85,6 @@ returns: -------------------------------------------------- // TESTRESPONSE[s/"_seq_no" : \d+/"_seq_no" : $body._seq_no/ s/"_primary_term" : 2/"_primary_term" : $body._primary_term/] - -Note: The <> can return the `_seq_no` and `_primary_term` -for each search hit by requesting the `_seq_no` and `_primary_term` <>. - The sequence number and the primary term uniquely identify a change. By noting down the sequence number and primary term returned, you can make sure to only change the document if no other change was made to it since you retrieved it. This