Open
Description
openedon Nov 6, 2020
Please make SolrContainer reusable. The container needs a bit of time to startup. For local testing it would be helpful if the container could be reused.
Maybe only the method containerIsStarted(InspectContainerResponse containerInfo, boolean reused)
needs to be overridden like in the following way
@Override
protected void containerIsStarted(InspectContainerResponse containerInfo, boolean reused) {
if(!reused){
containerIsStarted(containerInfo);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment