Skip to content
This repository has been archived by the owner on May 18, 2020. It is now read-only.

Rename tests, parallel tests, one elasticsearch replica, readiness probe #50

Merged
merged 15 commits into from
Oct 17, 2017
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import io.jaegertracing.kubernetes.deployment.BaseETest;
import java.io.IOException;
import java.util.UUID;
import java.util.concurrent.TimeUnit;
import okhttp3.Request;
import okhttp3.Response;
import org.junit.Before;
Expand All @@ -35,7 +36,9 @@ public class ElasticearchETest extends BaseETest {
* 2. jaeger-query returns 500 is ES storage is empty (without indices) https://github.com/jaegertracing/jaeger/issues/464
*/
@Before
public void before() {
public void before() throws InterruptedException {
TimeUnit.SECONDS.sleep(8);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR is not ready for review, right?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not ready, it is still failing


String serviceName = UUID.randomUUID().toString().replace("-", "");
Tracer tracer = createJaegerTracer(serviceName);
String operationName = UUID.randomUUID().toString().replace("-", "");
Expand Down