opentracing / opentracing-java

OpenTracing API for Java. 🛑 This library is DEPRECATED! https://github.com/opentracing/specification/issues/163
http://opentracing.io
Apache License 2.0
1.68k stars 344 forks source link

ThreadLocalScopeManager activeSpan method broken #355

Open sebukoleth opened 5 years ago

sebukoleth commented 5 years ago

@Override public Span activeSpan() { ThreadLocalScope scope = tlsScope.get(); return scope == null ? null : scope.span(); }

But Scope.span() method was deprecated in 0.32 and removed in 0.33. So if we try to use, for example, opentracing-concurrent 0.4.0, NoSuchMethodError will be raised.