SOLR-11024: ParallelStream should set the StreamContext when constructing SolrStreams

This commit is contained in:
Joel Bernstein 2017-07-06 20:53:58 -04:00
parent a31f9e8dd6
commit 7051a7919f
1 changed files with 1 additions and 0 deletions

View File

@ -267,6 +267,7 @@ public class ParallelStream extends CloudSolrStream implements Expressible {
String url = shardUrls.get(w);
SolrStream solrStream = new SolrStream(url, paramsLoc);
solrStream.setStreamContext(streamContext);
solrStreams.add(solrStream);
}