Skip to content

Commit 7a78255

Browse files
committed
1.0.0.RC1.1
1 parent 28df78f commit 7a78255

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

README.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@ Prerequisites::
1212

1313
Elasticsearch 0.90+
1414

15-
============= ========= ================= ===========================================================
16-
ES version Plugin Release date Command
17-
------------- --------- ----------------- -----------------------------------------------------------
18-
0.90.5 1.3.0 Oct 16, 2013 ./bin/plugin --install termlist --url http://bit.ly/1bzHfIl
19-
0.90.7 1.4.0 Dec 20, 2013 ./bin/plugin --install termlist --url http://bit.ly/1c70ICf
20-
============= ========= ================= ===========================================================
15+
============= =========== ================= ===========================================================
16+
ES version Plugin Release date Command
17+
------------- ----------- ----------------- -----------------------------------------------------------
18+
0.90.5 1.3.0 Oct 16, 2013 ./bin/plugin --install termlist --url http://bit.ly/1bzHfIl
19+
0.90.7 1.4.0 Dec 20, 2013 ./bin/plugin --install termlist --url http://bit.ly/1c70ICf
20+
1.0.0.RC1 1.0.0.RC1.1 Jan 16, 2014 ./bin/plugin --install termlist --url http://bit.ly/1dSIzoW
21+
============= =========== ================= ===========================================================
2122

2223
Do not forget to restart the node after installing.
2324

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.xbib.elasticsearch.plugin</groupId>
88
<artifactId>elasticsearch-index-termlist</artifactId>
9-
<version>1.4.0</version>
9+
<version>1.0.0.RC1.1</version>
1010

1111
<packaging>jar</packaging>
1212

@@ -44,7 +44,7 @@
4444
<properties>
4545
<github.global.server>github</github.global.server>
4646
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47-
<elasticsearch.version>0.90.7</elasticsearch.version>
47+
<elasticsearch.version>1.0.0.RC1</elasticsearch.version>
4848
</properties>
4949

5050
<dependencies>

src/main/java/org/xbib/elasticsearch/action/termlist/TransportTermlistAction.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import org.apache.lucene.index.TermsEnum;
99
import org.apache.lucene.util.BytesRef;
1010

11-
import org.elasticsearch.ElasticSearchException;
11+
import org.elasticsearch.ElasticsearchException;
1212
import org.elasticsearch.action.ShardOperationFailedException;
1313
import org.elasticsearch.action.support.DefaultShardOperationFailedException;
1414
import org.elasticsearch.action.support.broadcast.BroadcastShardOperationFailedException;
@@ -130,7 +130,7 @@ protected ClusterBlockException checkRequestBlock(ClusterState state, TermlistRe
130130
}
131131

132132
@Override
133-
protected ShardTermlistResponse shardOperation(ShardTermlistRequest request) throws ElasticSearchException {
133+
protected ShardTermlistResponse shardOperation(ShardTermlistRequest request) throws ElasticsearchException {
134134
InternalIndexShard indexShard = (InternalIndexShard) indicesService.indexServiceSafe(request.index()).shardSafe(request.shardId());
135135
Engine.Searcher searcher = indexShard.engine().acquireSearcher("termlist");
136136
try {
@@ -171,7 +171,7 @@ protected ShardTermlistResponse shardOperation(ShardTermlistRequest request) thr
171171
}
172172
return new ShardTermlistResponse(request.index(), request.shardId(), map);
173173
} catch (IOException ex) {
174-
throw new ElasticSearchException(ex.getMessage(), ex);
174+
throw new ElasticsearchException(ex.getMessage(), ex);
175175
} finally {
176176
searcher.release();
177177
}

0 commit comments

Comments
 (0)