Skip to content

Commit

Permalink
Merge pull request #92 from andrewbrown248/master
Browse files Browse the repository at this point in the history
  • Loading branch information
dlopes7 authored Oct 9, 2023
2 parents e49966e + e455af0 commit 14d99c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autodynatrace/wrappers/aiohttp/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def instrument():
async def dynatrace_request(wrapped, instance, args, kwargs):

method = args[0]
url = args[1]
url = str(args[1])
headers = dict(kwargs.get("headers", {}))

with sdk.trace_outgoing_web_request(url, method, headers) as tracer:
Expand Down

0 comments on commit 14d99c7

Please sign in to comment.