Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Allow `extra` to be None in breadcrumbs processing #1309
Conversation
Sometimes, `extra` is passed in as a default parameter of another function and can therefore be `None`. This fixes: Traceback (most recent call last): File "raven/breadcrumbs.py", line 77, in get_buffer processor(payload) File "raven/breadcrumbs.py", line 143, in processor data_value.update(extra) TypeError: 'NoneType' object is not iterable
The issue addressed by this PR is preventing my team from upgrading to 6.10.0. The issue in my particular project arises when calling |
@david-volantio if you are able to upgrade, any reason for not being able to give the new sdk a go? https://github.com/getsentry/sentry-python |
@ashwoods a fair point - I was just hoping we could move to the latest release but updating to sentry-python is definitely on our roadmap. thanks! |
Sometimes,
extra
is passed in as a default parameter of anotherfunction and can therefore be
None
. This fixes: