Temporary hack / workaround for issue 2482 (client-side Aggregation Test suite goes very slow): perform an in-core restart of the server in order to clean up the configuration back-end before running the test cases (in case there are any artifacts left over from previous tests which could slow this one down even more).
| | |
| | | @BeforeClass |
| | | public void setUp() throws Exception { |
| | | // This test suite depends on having the schema available, so |
| | | // we'll start the server. |
| | | TestCaseUtils.startServer(); |
| | | // we'll start the server. In addition this test is sensitive to |
| | | // having lots of junk left over from previous tests, so we |
| | | // restart the server to clean out the config (issue 2482). |
| | | TestCaseUtils.restartServer(); |
| | | TestCfg.setUp(); |
| | | } |
| | | |