Added thread sleep to allow the core to setup

This commit is contained in:
Michael Suzuki
2016-06-21 17:28:16 +01:00
parent 3ea51cc4fe
commit c8536dde54

View File

@@ -66,8 +66,10 @@ public class AlfrescoSolrTrackerTest extends AbstractAlfrescoSolrTests
private static Log logger = LogFactory.getLog(AlfrescoSolrTrackerTest.class);
private static long MAX_WAIT_TIME = 80000;
@BeforeClass
public static void beforeClass() throws Exception {
public static void beforeClass() throws Exception
{
initAlfrescoCore("solrconfig-afts.xml", "schema-afts.xml");
Thread.sleep(30000);
}
@Before