Skip to content

Commit 915702b

Browse files
committed
2.1.5
1 parent ac0afc6 commit 915702b

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ It uses tar archive format and gzip compression for input/output.
1212
Installation
1313
------------
1414

15-
Current version of the plugin is **2.1.4** (Oct 28, 2013)
15+
Current version of the plugin is **2.1.5** (Nov 6, 2013)
1616

1717
.. image:: https://travis-ci.org/jprante/elasticsearch-knapsack.png
1818

@@ -24,6 +24,7 @@ Prerequisites::
2424
ES version Plugin Release date Command
2525
------------- --------- ----------------- -----------------------------------------------------------
2626
0.90.5 **2.1.4** Oct 28, 2013 ./bin/plugin --install knapsack --url http://bit.ly/1ipne90
27+
0.90.6 **2.1.5** Nov 6, 2013 ./bin/plugin --install knapsack --url http://bit.ly/17cn710
2728
============= ========= ================= ===========================================================
2829

2930
Do not forget to restart the node after installation.

pom.xml

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

88
<groupId>org.xbib.elasticsearch.plugin</groupId>
99
<artifactId>elasticsearch-knapsack</artifactId>
10-
<version>2.1.4</version>
10+
<version>2.1.5</version>
1111

1212
<packaging>jar</packaging>
1313

@@ -42,10 +42,23 @@
4242
</repository>
4343
</distributionManagement>
4444

45+
<repositories>
46+
<repository>
47+
<id>bintray-elasticsearch-plugins</id>
48+
<url>http://dl.bintray.com/jprante/elasticsearch-plugins</url>
49+
<releases>
50+
<enabled>true</enabled>
51+
</releases>
52+
<snapshots>
53+
<enabled>false</enabled>
54+
</snapshots>
55+
</repository>
56+
</repositories>
57+
4558
<properties>
4659
<github.global.server>github</github.global.server>
4760
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
48-
<elasticsearch.version>0.90.3</elasticsearch.version>
61+
<elasticsearch.version>0.90.6</elasticsearch.version>
4962
</properties>
5063

5164
<dependencies>

src/main/java/org/xbib/elasticsearch/action/RestExportAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public void run() {
152152
Map<String, String> settings = getSettings(s);
153153
for (String index : settings.keySet()) {
154154
session.write(new ElasticPacket(index, "_settings", null, settings.get(index)));
155-
Map<String, String> mappings = getMapping(index, ImmutableSet.copyOf(types));
155+
Map<String, String> mappings = getMapping(index, types != null ? ImmutableSet.copyOf(types) : null);
156156
for (String type : mappings.keySet()) {
157157
session.write(new ElasticPacket(index, type, "_mapping", mappings.get(type)));
158158
}

0 commit comments

Comments
 (0)