Skip to content

Commit d020012

Browse files
committed
Update to Lucene 4.8
Closes #14. (cherry picked from commit 3cf0368)
1 parent b433c98 commit d020012

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ governing permissions and limitations under the License. -->
1616
<modelVersion>4.0.0</modelVersion>
1717
<groupId>org.elasticsearch</groupId>
1818
<artifactId>elasticsearch-cloud-azure</artifactId>
19-
<version>2.2.0-SNAPSHOT</version>
19+
<version>3.0.0-SNAPSHOT</version>
2020
<packaging>jar</packaging>
2121
<name>Elasticsearch Azure cloud plugin</name>
2222
<description>The Azure Cloud plugin allows to use Azure API for the unicast discovery mechanism and add Azure storage repositories.</description>
@@ -44,7 +44,7 @@ governing permissions and limitations under the License. -->
4444

4545
<properties>
4646
<elasticsearch.version>2.0.0-SNAPSHOT</elasticsearch.version>
47-
<lucene.version>4.7.1</lucene.version>
47+
<lucene.version>4.8.0</lucene.version>
4848
<tests.output>onerror</tests.output>
4949
<tests.jvms>1</tests.jvms>
5050
<tests.shuffle>true</tests.shuffle>

src/test/java/org/elasticsearch/azure/itest/AzureSimpleITest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
@AbstractAzureTest.AzureTest
3636
@ElasticsearchIntegrationTest.ClusterScope(
3737
scope = ElasticsearchIntegrationTest.Scope.TEST,
38-
numNodes = 1,
38+
numDataNodes = 1,
3939
transportClientRatio = 0.0)
4040
public class AzureSimpleITest extends AbstractAzureTest {
4141

src/test/java/org/elasticsearch/discovery/azure/AzureSimpleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
@ElasticsearchIntegrationTest.ClusterScope(
2626
scope = ElasticsearchIntegrationTest.Scope.TEST,
27-
numNodes = 1,
27+
numDataNodes = 1,
2828
transportClientRatio = 0.0)
2929
public class AzureSimpleTest extends AbstractAzureComputeServiceTest {
3030

src/test/java/org/elasticsearch/discovery/azure/AzureTwoStartedNodesTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
@ElasticsearchIntegrationTest.ClusterScope(
2626
scope = ElasticsearchIntegrationTest.Scope.TEST,
27-
numNodes = 2,
27+
numDataNodes = 2,
2828
transportClientRatio = 0.0)
2929
public class AzureTwoStartedNodesTest extends AbstractAzureComputeServiceTest {
3030

src/test/java/org/elasticsearch/repositories/azure/AzureSnapshotRestoreITest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
@AbstractAzureTest.AzureTest
5454
@ElasticsearchIntegrationTest.ClusterScope(
5555
scope = ElasticsearchIntegrationTest.Scope.SUITE,
56-
numNodes = 2,
56+
numDataNodes = 2,
5757
transportClientRatio = 0.0)
5858
public class AzureSnapshotRestoreITest extends AbstractAzureTest {
5959

src/test/java/org/elasticsearch/repositories/azure/AzureSnapshotRestoreTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
@ElasticsearchIntegrationTest.ClusterScope(
3737
scope = ElasticsearchIntegrationTest.Scope.SUITE,
38-
numNodes = 1,
38+
numDataNodes = 1,
3939
transportClientRatio = 0.0)
4040
public class AzureSnapshotRestoreTest extends AbstractAzureRepositoryServiceTest {
4141

0 commit comments

Comments
 (0)