Skip to content

Commit

Permalink
fixing formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yusuke Tsutsumi committed Sep 18, 2019
1 parent 1a3dc75 commit 4c38989
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ def __call__(self, environ, start_response):
path_info = environ["PATH_INFO"] or "/"
parent_span = propagators.extract(get_header_from_environ, environ)

with tracer.start_span(path_info, parent_span, kind=trace.SpanKind.SERVER) as span:
with tracer.start_span(
path_info, parent_span, kind=trace.SpanKind.SERVER
) as span:
self._add_request_attributes(span, environ)
start_response = self._create_start_response(span, start_response)

Expand Down

0 comments on commit 4c38989

Please sign in to comment.