Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- Drop support for flask 1.x due to dependency issue in Jinja2 and EOL (#195)

- Fixes:
- Fix the problem of multiple requests for the same traceId in Tornado framework (#209)
- Spans now correctly reference finished parents (#161)
- Remove potential password leak from Aiohttp outgoing url (#175)
- Handle error when REMOTE_PORT is missing in Flask (#176)
Expand Down
5 changes: 1 addition & 4 deletions skywalking/trace/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,7 @@ def _spans(): # need to do this because can't set mutable default = [] in conte
return spans

def _spans_dup():
spans = __spans.get()[:]
__spans.set(spans)

return spans
return __spans.get()

__spans.set([])

Expand Down