mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-24 17:09:48 +00:00
Required changes after merging in master branch.
This commit is contained in:
parent
82592dda5a
commit
575f33941c
@ -47,7 +47,7 @@ gradle.projectsEvaluated {
|
||||
dependencies {
|
||||
compileOnly "org.elasticsearch:elasticsearch:${version}"
|
||||
|
||||
compileOnly project(path: xpackModule('core'), configuration: 'shadow')
|
||||
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
||||
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
||||
}
|
||||
|
||||
|
@ -3,7 +3,7 @@ import org.elasticsearch.gradle.test.RestIntegTestTask
|
||||
apply plugin: 'elasticsearch.standalone-test'
|
||||
|
||||
dependencies {
|
||||
testCompile project(path: xpackModule('core'), configuration: 'shadow')
|
||||
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
||||
testCompile project(path: xpackModule('ccr'), configuration: 'runtime')
|
||||
}
|
||||
|
||||
|
@ -3,7 +3,7 @@ import org.elasticsearch.gradle.test.RestIntegTestTask
|
||||
apply plugin: 'elasticsearch.standalone-test'
|
||||
|
||||
dependencies {
|
||||
testCompile project(path: xpackModule('core'), configuration: 'shadow')
|
||||
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
||||
testCompile project(path: xpackModule('ccr'), configuration: 'runtime')
|
||||
}
|
||||
|
||||
|
@ -3,7 +3,7 @@ import org.elasticsearch.gradle.test.RestIntegTestTask
|
||||
apply plugin: 'elasticsearch.standalone-test'
|
||||
|
||||
dependencies {
|
||||
testCompile project(path: xpackModule('core'), configuration: 'shadow')
|
||||
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
||||
testCompile project(path: xpackModule('ccr'), configuration: 'runtime')
|
||||
}
|
||||
|
||||
|
@ -280,7 +280,7 @@ public class FollowingEngineTests extends ESTestCase {
|
||||
SequenceNumbers.NO_OPS_PERFORMED, shardId, 1L);
|
||||
store.associateIndexWithNewTranslog(translogUuid);
|
||||
FollowingEngine followingEngine = new FollowingEngine(config);
|
||||
followingEngine.recoverFromTranslog();
|
||||
followingEngine.recoverFromTranslog(Long.MAX_VALUE);
|
||||
return followingEngine;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user