You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jb...@apache.org on 2016/02/11 18:41:24 UTC

lucene-solr git commit: SOLR-8190: Implement Closeable on TupleStream

Repository: lucene-solr
Updated Branches:
  refs/heads/master 360051a41 -> 739b81063


SOLR-8190: Implement Closeable on TupleStream


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

Branch: refs/heads/master
Commit: 739b81063eb9045b4686ce8ad702c61451503306
Parents: 360051a
Author: jbernste <jb...@apache.org>
Authored: Thu Feb 11 12:44:47 2016 -0500
Committer: jbernste <jb...@apache.org>
Committed: Thu Feb 11 12:46:04 2016 -0500

----------------------------------------------------------------------
 solr/CHANGES.txt                                                  | 2 ++
 .../java/org/apache/solr/client/solrj/io/stream/TupleStream.java  | 3 ++-
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/739b8106/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 2937842..639c08c 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -242,6 +242,8 @@ Other Changes
 * SOLR-5209: Unloading or deleting the last replica of a shard now no longer
   cascades to remove the shard from the clusterstate. (Christine Poerschke)
 
+* SOLR-8190: Implement Closeable on TupleStream (Kevin Risden, Joel Bernstein)
+
 ======================= 5.6.0 =======================
 (No Changes)
 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/739b8106/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/TupleStream.java
----------------------------------------------------------------------
diff --git a/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/TupleStream.java b/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/TupleStream.java
index 858e7b6..76afa11 100644
--- a/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/TupleStream.java
+++ b/solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/TupleStream.java
@@ -16,6 +16,7 @@
  */
 package org.apache.solr.client.solrj.io.stream;
 
+import java.io.Closeable;
 import java.io.IOException;
 import java.io.Serializable;
 import java.io.Writer;
@@ -25,7 +26,7 @@ import org.apache.solr.client.solrj.io.Tuple;
 import org.apache.solr.client.solrj.io.comp.StreamComparator;
 
 
-public abstract class TupleStream implements Serializable {
+public abstract class TupleStream implements Closeable, Serializable {
 
   private static final long serialVersionUID = 1;