yurishkuro / opentracing-tutorial

A collection of tutorials for the OpenTracing API
Apache License 2.0
1.57k stars 407 forks source link

No startActive function #60

Closed asad-awadia closed 5 years ago

asad-awadia commented 5 years ago

I am using jaeger client 0.32 and do not even have a startActive function ??

try (Scope scope = tracer.buildSpan("say-hello").startActive(true)) {
            scope.span().setTag("hello-to", helloTo);

            String helloStr = formatString(helloTo);
            printHello(helloStr);
        }

Was it removed? Am I using the incorrect version?