mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-21 20:35:54 +00:00
parent
fa1219fd13
commit
b973d10685
@ -250,6 +250,18 @@ public class WatcherXContentParser implements XContentParser {
|
|||||||
return parser.booleanValue();
|
return parser.booleanValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@SuppressWarnings("deprecated")
|
||||||
|
public boolean isBooleanValueLenient() throws IOException {
|
||||||
|
return parser.isBooleanValueLenient();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@SuppressWarnings("deprecated")
|
||||||
|
public boolean booleanValueLenient() throws IOException {
|
||||||
|
return parser.booleanValueLenient();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public byte[] binaryValue() throws IOException {
|
public byte[] binaryValue() throws IOException {
|
||||||
return parser.binaryValue();
|
return parser.binaryValue();
|
||||||
|
@ -116,8 +116,6 @@ public abstract class AbstractOldXPackIndicesBackwardsCompatibilityTestCase exte
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO dm: fix me
|
|
||||||
@AwaitsFix(bugUrl = "We need to fix BWC first")
|
|
||||||
public void testOldIndexes() throws Exception {
|
public void testOldIndexes() throws Exception {
|
||||||
Collections.shuffle(dataFiles, random());
|
Collections.shuffle(dataFiles, random());
|
||||||
for (String dataFile : dataFiles) {
|
for (String dataFile : dataFiles) {
|
||||||
|
@ -58,8 +58,6 @@ public class ESNativeMigrateToolTests extends NativeRealmIntegTestCase {
|
|||||||
return internalCluster().getInstances(Environment.class).iterator().next();
|
return internalCluster().getInstances(Environment.class).iterator().next();
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO dm: fix me
|
|
||||||
@AwaitsFix(bugUrl = "We need to fix BWC first")
|
|
||||||
public void testRetrieveUsers() throws Exception {
|
public void testRetrieveUsers() throws Exception {
|
||||||
final Environment nodeEnvironment = nodeEnvironment();
|
final Environment nodeEnvironment = nodeEnvironment();
|
||||||
String home = Environment.PATH_HOME_SETTING.get(nodeEnvironment.settings());
|
String home = Environment.PATH_HOME_SETTING.get(nodeEnvironment.settings());
|
||||||
@ -100,8 +98,6 @@ public class ESNativeMigrateToolTests extends NativeRealmIntegTestCase {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO dm: fix me
|
|
||||||
@AwaitsFix(bugUrl = "We need to fix BWC first")
|
|
||||||
public void testRetrieveRoles() throws Exception {
|
public void testRetrieveRoles() throws Exception {
|
||||||
final Environment nodeEnvironment = nodeEnvironment();
|
final Environment nodeEnvironment = nodeEnvironment();
|
||||||
String home = Environment.PATH_HOME_SETTING.get(nodeEnvironment.settings());
|
String home = Environment.PATH_HOME_SETTING.get(nodeEnvironment.settings());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user