This commit is contained in:
Zoltan Haindrich 2024-06-11 15:22:52 +00:00
parent 002c3056d4
commit 6c6053eee0
3 changed files with 4 additions and 7 deletions

View File

@ -370,4 +370,4 @@ public class ExposedAsBrokerQueryComponentSupplierWrapper implements QueryCompon
}
);
}
}
}

View File

@ -59,10 +59,9 @@ public class Launcher
public static void main(String[] args) throws Exception
{
try {
String quidemUri = System.getProperty(QUIDEM_URI, "druidtest:///");
Properties p = System.getProperties();
for ( Object string : p.keySet()) {
for (Object string : p.keySet()) {
log.info("[%s] -> %s", string, p.get(string));
}
log.info("Starting Quidem with URI[%s]", quidemUri);
@ -70,9 +69,5 @@ public class Launcher
Launcher launcher = new Launcher(quidemUri);
launcher.start();
launcher.lifecycle.join();
} catch (Exception e) {
e.printStackTrace();
}
}
}

View File

@ -16,6 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.druid.quidem;
import org.apache.http.client.methods.CloseableHttpResponse;
@ -32,6 +33,7 @@ import org.junit.BeforeClass;
import org.junit.Test;
import java.io.IOException;
import static org.junit.Assert.assertEquals;
public class LauncherSmokeTest