mirror of https://github.com/apache/lucene.git
few more awaitsfix
This commit is contained in:
parent
c8f48d4701
commit
2660139aa3
|
@ -777,6 +777,7 @@ public class CloudHttp2SolrClientTest extends SolrCloudTestCase {
|
||||||
public ExpectedException exception = ExpectedException.none();
|
public ExpectedException exception = ExpectedException.none();
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/SOLR-12823")
|
||||||
public void testWrongZkChrootTest() throws IOException {
|
public void testWrongZkChrootTest() throws IOException {
|
||||||
|
|
||||||
exception.expect(SolrException.class);
|
exception.expect(SolrException.class);
|
||||||
|
|
|
@ -761,6 +761,7 @@ public class CloudSolrClientTest extends SolrCloudTestCase {
|
||||||
public ExpectedException exception = ExpectedException.none();
|
public ExpectedException exception = ExpectedException.none();
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/SOLR-12823")
|
||||||
public void testWrongZkChrootTest() throws IOException {
|
public void testWrongZkChrootTest() throws IOException {
|
||||||
try (CloudSolrClient client = getCloudSolrClient(cluster.getZkServer().getZkAddress() + "/xyz/foo")) {
|
try (CloudSolrClient client = getCloudSolrClient(cluster.getZkServer().getZkAddress() + "/xyz/foo")) {
|
||||||
client.setZkClientTimeout(1000 * 60);
|
client.setZkClientTimeout(1000 * 60);
|
||||||
|
|
|
@ -31,6 +31,7 @@ import org.junit.Test;
|
||||||
public class TestCloudSolrClientConnections extends SolrTestCaseJ4 {
|
public class TestCloudSolrClientConnections extends SolrTestCaseJ4 {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/SOLR-12823")
|
||||||
public void testCloudClientCanConnectAfterClusterComesUp() throws Exception {
|
public void testCloudClientCanConnectAfterClusterComesUp() throws Exception {
|
||||||
|
|
||||||
// Start by creating a cluster with no jetties
|
// Start by creating a cluster with no jetties
|
||||||
|
@ -58,6 +59,7 @@ public class TestCloudSolrClientConnections extends SolrTestCaseJ4 {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@AwaitsFix(bugUrl = "https://issues.apache.org/jira/browse/SOLR-12823")
|
||||||
public void testCloudClientUploads() throws Exception {
|
public void testCloudClientUploads() throws Exception {
|
||||||
|
|
||||||
Path configPath = getFile("solrj").toPath().resolve("solr/configsets/configset-2/conf");
|
Path configPath = getFile("solrj").toPath().resolve("solr/configsets/configset-2/conf");
|
||||||
|
|
Loading…
Reference in New Issue