Skip to content

Commit 575f339

Browse files
committed
Required changes after merging in master branch.
1 parent 82592dd commit 575f339

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

x-pack/plugin/ccr/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ gradle.projectsEvaluated {
4747
dependencies {
4848
compileOnly "org.elasticsearch:elasticsearch:${version}"
4949

50-
compileOnly project(path: xpackModule('core'), configuration: 'shadow')
50+
compileOnly project(path: xpackModule('core'), configuration: 'default')
5151
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
5252
}
5353

x-pack/plugin/ccr/qa/multi-cluster-with-incompatible-license/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.elasticsearch.gradle.test.RestIntegTestTask
33
apply plugin: 'elasticsearch.standalone-test'
44

55
dependencies {
6-
testCompile project(path: xpackModule('core'), configuration: 'shadow')
6+
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
77
testCompile project(path: xpackModule('ccr'), configuration: 'runtime')
88
}
99

x-pack/plugin/ccr/qa/multi-cluster-with-security/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.elasticsearch.gradle.test.RestIntegTestTask
33
apply plugin: 'elasticsearch.standalone-test'
44

55
dependencies {
6-
testCompile project(path: xpackModule('core'), configuration: 'shadow')
6+
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
77
testCompile project(path: xpackModule('ccr'), configuration: 'runtime')
88
}
99

x-pack/plugin/ccr/qa/multi-cluster/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import org.elasticsearch.gradle.test.RestIntegTestTask
33
apply plugin: 'elasticsearch.standalone-test'
44

55
dependencies {
6-
testCompile project(path: xpackModule('core'), configuration: 'shadow')
6+
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
77
testCompile project(path: xpackModule('ccr'), configuration: 'runtime')
88
}
99

x-pack/plugin/ccr/src/test/java/org/elasticsearch/xpack/ccr/index/engine/FollowingEngineTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ private FollowingEngine createEngine(Store store, EngineConfig config) throws IO
280280
SequenceNumbers.NO_OPS_PERFORMED, shardId, 1L);
281281
store.associateIndexWithNewTranslog(translogUuid);
282282
FollowingEngine followingEngine = new FollowingEngine(config);
283-
followingEngine.recoverFromTranslog();
283+
followingEngine.recoverFromTranslog(Long.MAX_VALUE);
284284
return followingEngine;
285285
}
286286

0 commit comments

Comments
 (0)