Skip to content
This repository was archived by the owner on Jan 31, 2024. It is now read-only.

Commit 382fcaf

Browse files
committed
Update to elasticsearch 1.0.0
Closes #20.
1 parent 3e21527 commit 382fcaf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ In order to install the plugin, simply run: `bin/plugin -install elasticsearch/e
77

88
| memcached Plugin | elasticsearch | Release date |
99
|-----------------------------|-----------------------|:------------:|
10-
| 2.0.0-SNAPSHOT (master) | 1.0.0.RC1 -> master | |
11-
| 2.0.0.RC1 | 1.0.0.RC1 -> master | 2014-10-15 |
10+
| 2.0.0-SNAPSHOT (master) | 1.0.0 -> master | |
11+
| 2.0.0.RC1 | 1.0.0.RC1 | 2014-10-15 |
1212
| 1.8.0-SNAPSHOT (1.x) | 0.90.10 -> 0.90 | |
1313
| 1.7.0 | 0.90.10 -> 0.90 | 2014-01-13 |
1414
| 1.6.0 | 0.90.2 -> 0.90.9 | 2013-07-26 |

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
</parent>
3232

3333
<properties>
34-
<elasticsearch.version>1.0.0.RC1</elasticsearch.version>
35-
<lucene.version>4.6.0</lucene.version>
34+
<elasticsearch.version>1.0.0</elasticsearch.version>
35+
<lucene.version>4.6.1</lucene.version>
3636
<tests.jvms>1</tests.jvms>
3737
<tests.shuffle>true</tests.shuffle>
3838
<tests.output>onerror</tests.output>

src/main/java/org/elasticsearch/memcached/MemcachedServer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ protected void doStart() throws ElasticsearchException {
5151
if (logger.isInfoEnabled()) {
5252
logger.info("{}", transport.boundAddress());
5353
}
54-
nodeService.putNodeAttribute("memcached_address", transport.boundAddress().publishAddress().toString());
54+
nodeService.putAttribute("memcached_address", transport.boundAddress().publishAddress().toString());
5555
}
5656

5757
@Override
5858
protected void doStop() throws ElasticsearchException {
59-
nodeService.removeNodeAttribute("memcached_address");
59+
nodeService.removeAttribute("memcached_address");
6060
transport.stop();
6161
}
6262

0 commit comments

Comments
 (0)