We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1def0a1 commit bf58ec7Copy full SHA for bf58ec7
instana/middleware.py
@@ -1,12 +1,12 @@
1
import opentracing as ot
2
-import instana.tracer
+from instana import tracer
3
import opentracing.ext.tags as ext
4
5
6
class InstanaMiddleware(object):
7
def __init__(self, get_response):
8
self.get_response = get_response
9
- ot.global_tracer = instana.tracer.InstanaTracer()
+ ot.global_tracer = tracer.InstanaTracer()
10
self
11
12
def __call__(self, request):
0 commit comments