Skip to content

Commit 634c39c

Browse files
committed
Fix breakage of distribution integ tests
1 parent e29c9b9 commit 634c39c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

distribution/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ subprojects {
9595
apply plugin: 'elasticsearch.rest-test'
9696
project.integTest {
9797
dependsOn project.assemble
98+
includePackaged project.name == 'integ-test-zip'
9899
cluster {
99100
distribution = project.name
100101
}
101102
if (project.name != 'integ-test-zip') {
102-
includePackaged true
103103
// see note above with module mustRunAfter about why integTest#stop is used here
104104
mustRunAfter ':distribution:integ-test-zip:integTest#stop'
105105
}

distribution/deb/src/test/resources/rest-api-spec/test/smoke_test_plugins/10_modules.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
- do:
1111
nodes.info: {}
1212

13-
- length: { nodes.$master.plugins: ${expected.modules.count} }
13+
- length: { nodes.$master.modules: ${expected.modules.count} }

distribution/rpm/src/test/resources/rest-api-spec/test/smoke_test_plugins/10_modules.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
- do:
1111
nodes.info: {}
1212

13-
- length: { nodes.$master.plugins: ${expected.modules.count} }
13+
- length: { nodes.$master.modules: ${expected.modules.count} }

distribution/tar/src/test/resources/rest-api-spec/test/smoke_test_plugins/10_modules.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
- do:
1111
nodes.info: {}
1212

13-
- length: { nodes.$master.plugins: ${expected.modules.count} }
13+
- length: { nodes.$master.modules: ${expected.modules.count} }

distribution/zip/src/test/resources/rest-api-spec/test/smoke_test_plugins/10_modules.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
- do:
1111
nodes.info: {}
1212

13-
- length: { nodes.$master.plugins: ${expected.modules.count} }
13+
- length: { nodes.$master.modules: ${expected.modules.count} }

0 commit comments

Comments
 (0)