You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by is...@apache.org on 2017/05/26 22:11:15 UTC

lucene-solr:branch_6x: SOLR-10004: Placing the experimental tag properly

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x 995291df7 -> 5558e5c0e


SOLR-10004: Placing the experimental tag properly


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

Branch: refs/heads/branch_6x
Commit: 5558e5c0e4c0688d93b7b6ef3caed3230929efc7
Parents: 995291d
Author: Ishan Chattopadhyaya <is...@apache.org>
Authored: Sat May 27 03:40:32 2017 +0530
Committer: Ishan Chattopadhyaya <is...@apache.org>
Committed: Sat May 27 03:41:03 2017 +0530

----------------------------------------------------------------------
 solr/core/src/java/org/apache/solr/update/PeerSync.java  | 3 ++-
 solr/core/src/java/org/apache/solr/update/UpdateLog.java | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/5558e5c0/solr/core/src/java/org/apache/solr/update/PeerSync.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/update/PeerSync.java b/solr/core/src/java/org/apache/solr/update/PeerSync.java
index d114f02..b355069 100644
--- a/solr/core/src/java/org/apache/solr/update/PeerSync.java
+++ b/solr/core/src/java/org/apache/solr/update/PeerSync.java
@@ -66,9 +66,10 @@ import static org.apache.solr.update.processor.DistributedUpdateProcessor.Distri
 import static org.apache.solr.update.processor.DistributingUpdateProcessorFactory.DISTRIB_UPDATE_PARAM;
 
 /**
- * @lucene.experimental
  * This class is useful for performing peer to peer synchronization of recently indexed update commands during
  * recovery process.
+ *
+ * @lucene.experimental
  */
 public class PeerSync implements SolrMetricProducer {
   private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/5558e5c0/solr/core/src/java/org/apache/solr/update/UpdateLog.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/update/UpdateLog.java b/solr/core/src/java/org/apache/solr/update/UpdateLog.java
index 9aa46b9..7f49686 100644
--- a/solr/core/src/java/org/apache/solr/update/UpdateLog.java
+++ b/solr/core/src/java/org/apache/solr/update/UpdateLog.java
@@ -80,9 +80,10 @@ import static org.apache.solr.update.processor.DistributingUpdateProcessorFactor
 
 
 /** 
- * @lucene.experimental 
  * This holds references to the transaction logs and pointers for the document IDs to their
  * exact positions in the transaction logs.
+ *
+ * @lucene.experimental
  */
 public class UpdateLog implements PluginInfoInitialized, SolrMetricProducer {
   private static final long STATUS_TIME = TimeUnit.NANOSECONDS.convert(60, TimeUnit.SECONDS);