You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2018/03/23 02:53:56 UTC

[2/2] lucene-solr:branch_7x: SOLR-12015: fixed typo in CHANGES.txt

SOLR-12015: fixed typo in CHANGES.txt


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/56009132
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/56009132
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/56009132

Branch: refs/heads/branch_7x
Commit: 56009132b99472adcdaf47a1ddd61afaa93cf88a
Parents: 00ce2d2
Author: Noble Paul <no...@apache.org>
Authored: Fri Mar 23 13:52:25 2018 +1100
Committer: Noble Paul <no...@apache.org>
Committed: Fri Mar 23 13:53:39 2018 +1100

----------------------------------------------------------------------
 solr/CHANGES.txt                                                   | 2 +-
 .../apache/solr/update/processor/AtomicUpdateProcessorFactory.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/56009132/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 9f712cf..5295bfe 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -39,7 +39,7 @@ New Features
   currently performs cleanup of old inactive shards. (ab, shalin)
 
 * SOLR-12015: Add support "add-distinct" in AtomicURP so that we can use the 'add-distict' as a request parameter e.g:
-  atomic.add-distict=<multival-field-name> (Amrit Sarkar via noble)
+  atomic.<multival-field-name>=add-distict (Amrit Sarkar via noble)
 
 Bug Fixes
 ----------------------

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/56009132/solr/core/src/java/org/apache/solr/update/processor/AtomicUpdateProcessorFactory.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/update/processor/AtomicUpdateProcessorFactory.java b/solr/core/src/java/org/apache/solr/update/processor/AtomicUpdateProcessorFactory.java
index 2400053..de65ea6 100644
--- a/solr/core/src/java/org/apache/solr/update/processor/AtomicUpdateProcessorFactory.java
+++ b/solr/core/src/java/org/apache/solr/update/processor/AtomicUpdateProcessorFactory.java
@@ -45,7 +45,7 @@ import static org.apache.solr.common.SolrException.ErrorCode.SERVER_ERROR;
  * <p>
  * sample request:
  * curl -X POST -H Content-Type: application/json
- * http://localhost:8983/solr/test/update/json/docs?processor=atomic;ampersand;Atomic.my_newfield=add;ampersand;Atomic.subject=set;ampersand;Atomic.count_i=inc;ampersand;commit=true
+ * http://localhost:8983/solr/test/update/json/docs?processor=atomic;ampersand;atomic.my_newfield=add;ampersand;atomic.subject=set;ampersand;atomic.count_i=inc;ampersand;commit=true
  * --data-binary {"id": 1,"title": "titleA"}
  * </p>
  * currently supports all types of atomic updates