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:52:34 UTC

lucene-solr:master: SOLR-12015: fixed typo in CHANGES.txt

Repository: lucene-solr
Updated Branches:
  refs/heads/master e340cef68 -> e364f5be3


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/e364f5be
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/e364f5be
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/e364f5be

Branch: refs/heads/master
Commit: e364f5be31555d3704ce4007c470feb3bd9c649b
Parents: e340cef
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:52:25 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/e364f5be/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 4ce73e3..866c46f 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -59,7 +59,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/e364f5be/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