-
Notifications
You must be signed in to change notification settings - Fork 601
Closed
Labels
Description
How do you use Sentry?
Sentry Saas (sentry.io)
Version
all of them
Steps to Reproduce
>>> def f(a, b, c):
... pass
...
>>> import inspect
>>> inspect.getcallargs(f, 1, 2, 3)
{'a': 1, 'b': 2, 'c': 3}
>>>
>>> import sentry_sdk
>>> @sentry_sdk.tracing.trace
... def f(a, b, c):
... passs
...
>>> inspect.getcallargs(f, 1, 2, 3)
{'args': (1, 2, 3), 'kwargs': {}}
>>>
Expected Result
Same function signature after applying the decorator.
Actual Result
Changed signature.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Fields
Give feedbackNo fields configured for issues without a type.