Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move user provided extra data under custom #431

Merged
merged 4 commits into from
Jun 26, 2023
Merged
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
57 changes: 55 additions & 2 deletions rollbar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from rollbar.lib import events, filters, dict_merge, parse_qs, text, transport, urljoin, iteritems, defaultJSONEncode


__version__ = '0.16.4beta1'
__version__ = '0.16.4beta2'
__log_name__ = 'rollbar'
log = logging.getLogger(__log_name__)

Expand Down Expand Up @@ -839,6 +839,59 @@ def _trace_data(cls, exc, trace):
return trace_data


def _process_extra_data(data, extra_data):
"""
If `extra_data` contains `args` or select keys in `record` then that's
something pyrollbar generated with the logger, which is to be put in
data.body.message. Otherwise, `extra_data` was passed through by a user,
which is to be put in custom.
"""
custom = {}
body_message = {}

record_logger_keys = [
'created',
'funcName',
'lineno',
'module',
'name',
'pathname',
'process',
'processName',
'relativeCreated',
'thread',
'threadName',
]

for k, v in extra_data.items():
if k == 'args':
body_message['args'] = v

elif k == 'record':
record_full = v
record_custom = {}
record_body_message = {}

if isinstance(record_full, dict):
for kk, vv in record_full.items():
if kk in record_logger_keys:
record_body_message[kk] = vv
else:
record_custom[kk] = vv

if record_custom:
custom['record'] = record_custom
if record_body_message:
body_message['record'] = record_body_message

else:
custom[k] = v

if custom:
data['custom'] = custom
data['body']['message'].update(body_message)


def _report_message(message, level, request, extra_data, payload_data):
"""
Called by report_message() wrapper
Expand Down Expand Up @@ -866,7 +919,7 @@ def _report_message(message, level, request, extra_data, payload_data):

if extra_data:
extra_data = extra_data
data['body']['message'].update(extra_data)
_process_extra_data(data, extra_data)

request = _get_actual_request(request)
_add_request_data(data, request)
Expand Down
14 changes: 13 additions & 1 deletion rollbar/test/test_loghandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Tests for the RollbarHandler logging handler
"""
import copy
import json
import logging
import sys

Expand Down Expand Up @@ -52,6 +51,19 @@
self.assertEqual(payload['data']['body']['message']['args'], (1, 'world'))
self.assertEqual(payload['data']['body']['message']['record']['name'], __name__)

@mock.patch('rollbar.send_payload')
def test_logger_related_fields_are_in_body_message(self, send_payload):
logger = self._create_logger()
logger.warning("Hello %d %s", 1, 'world')

payload = send_payload.call_args[0][0]

self.assertEqual(payload['data']['body']['message']['args'], (1, 'world'))
self.assertEqual(payload['data']['body']['message']['record']['name'], __name__)
self.assertEqual(payload['data']['body']['message']['record']['module'], 'test_loghandler')
self.assertEqual(payload['data']['body']['message']['record']['funcName'],
'test_logger_related_fields_are_in_body_message')

@mock.patch('rollbar.send_payload')
def test_string_or_int_level(self, send_payload):
logger = self._create_logger()
Expand Down Expand Up @@ -107,7 +119,7 @@

def _raise_context():
bar_local = 'bar'
raise CauseException('bar')

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, FLASK_VERSION=1.1.4)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=1.1.4)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=3.2.18)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=1.1.4)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, FLASK_VERSION=1.1.4)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=2.2.28)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=2.2.3)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=2.2.28)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=4.0.10)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, DJANGO_VERSION=1.11.29)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, TWISTED_VERSION=20.3.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=2.2.3)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=21.7.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, TWISTED_VERSION=21.7.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=3.2.18)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, TWISTED_VERSION=20.3.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=3.2.18)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, TWISTED_VERSION=22.10.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=1.11.29)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=4.1.7)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=4.1.7)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, DJANGO_VERSION=2.2.28)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, TWISTED_VERSION=21.7.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=4.0.10)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=22.10.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=2.2.28)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=2.2.28)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=1.11.29)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=3.2.18)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=1.1.4)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=2.2.3)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=20.3.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=22.10.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=4.1.7)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=4.0.10)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=3.2.18)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=1.1.4)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=2.2.3)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=2.2.3)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=1.1.4)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=20.3.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=4.1.7)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=2.2.28)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=2.2.28)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=3.2.18)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=22.10.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=22.10.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=21.7.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=4.0.10)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=21.7.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=21.7.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=20.3.0)

bar

Check failure on line 122 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=20.3.0)

bar

def _raise_ex():
try:
Expand Down Expand Up @@ -146,7 +158,7 @@

def _raise_context():
bar_local = 'bar'
raise CauseException('bar')

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, FLASK_VERSION=1.1.4)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=1.1.4)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=3.2.18)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=1.1.4)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, FLASK_VERSION=1.1.4)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=2.2.28)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=2.2.3)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=2.2.28)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=4.0.10)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, DJANGO_VERSION=1.11.29)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, TWISTED_VERSION=20.3.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=2.2.3)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=21.7.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, TWISTED_VERSION=21.7.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=3.2.18)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, TWISTED_VERSION=20.3.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=3.2.18)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, TWISTED_VERSION=22.10.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=1.11.29)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=4.1.7)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=4.1.7)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.5, DJANGO_VERSION=2.2.28)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, TWISTED_VERSION=21.7.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=4.0.10)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=22.10.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=2.2.28)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=2.2.28)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=1.11.29)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=3.2.18)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=1.1.4)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=2.2.3)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=20.3.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=22.10.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=4.1.7)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=4.0.10)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=3.2.18)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=1.1.4)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=2.2.3)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=2.2.3)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=1.1.4)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=20.3.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, PYRAMID_VERSION=1.10.8)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=4.1.7)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=2.2.28)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=2.2.28)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=3.2.18)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=22.10.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=22.10.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=21.7.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=4.0.10)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=21.7.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=21.7.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=20.3.0)

bar

Check failure on line 161 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=20.3.0)

bar

def _raise_ex():
try:
Expand Down
12 changes: 12 additions & 0 deletions rollbar/test/test_rollbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -891,6 +891,18 @@
self.assertIn('body', payload['data']['body']['message'])
self.assertEqual(payload['data']['body']['message']['body'], 'foo')

@mock.patch('rollbar.send_payload')
def test_user_provided_extra_data_ends_up_in_custom(self, send_payload):
rollbar.report_message('foo', extra_data={'id': 123, 'name': 'John'})

payload = send_payload.call_args[0][0]

self.assertIn('custom', payload['data'])
self.assertIn('id', payload['data']['custom'])
self.assertIn('name', payload['data']['custom'])
self.assertEqual(payload['data']['custom']['id'], 123)
self.assertEqual(payload['data']['custom']['name'], 'John')

@mock.patch('rollbar.send_payload')
def test_uuid(self, send_payload):
uuid = rollbar.report_message('foo')
Expand Down Expand Up @@ -966,7 +978,7 @@
# self.assertEqual(_send_failsafe.call_count, 1)

try:
raise Exception('trigger_failsafe')

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, FLASK_VERSION=1.1.4)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, PYRAMID_VERSION=1.10.8)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=1.1.4)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, PYRAMID_VERSION=1.10.8)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=3.2.18)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=1.1.4)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, FLASK_VERSION=1.1.4)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=2.2.28)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=2.2.3)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=2.2.28)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, PYRAMID_VERSION=1.10.8)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=4.0.10)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, DJANGO_VERSION=1.11.29)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, TWISTED_VERSION=20.3.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=2.2.3)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=21.7.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, TWISTED_VERSION=21.7.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=3.2.18)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, TWISTED_VERSION=20.3.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=3.2.18)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, TWISTED_VERSION=22.10.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=1.11.29)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=4.1.7)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=4.1.7)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, DJANGO_VERSION=2.2.28)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, TWISTED_VERSION=21.7.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=4.0.10)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=22.10.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, PYRAMID_VERSION=1.10.8)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=2.2.28)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=2.2.28)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=1.11.29)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=3.2.18)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=1.1.4)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=2.2.3)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=20.3.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, PYRAMID_VERSION=1.10.8)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=22.10.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=4.1.7)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=4.0.10)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, PYRAMID_VERSION=1.10.8)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=3.2.18)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=1.1.4)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=2.2.3)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=2.2.3)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=1.1.4)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=20.3.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, PYRAMID_VERSION=1.10.8)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=4.1.7)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=2.2.28)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=2.2.28)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=3.2.18)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=22.10.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=22.10.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=21.7.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=4.0.10)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=21.7.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=21.7.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=20.3.0)

trigger_failsafe

Check failure on line 981 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=20.3.0)

trigger_failsafe
except:
rollbar._post_api('/api/1/item', {'derp'})

Expand Down Expand Up @@ -1096,7 +1108,7 @@

try:
t = tmp()
raise Exception('trigger_serialize')

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, FLASK_VERSION=1.1.4)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, PYRAMID_VERSION=1.10.8)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=1.1.4)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, PYRAMID_VERSION=1.10.8)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=3.2.18)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=1.1.4)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, FLASK_VERSION=1.1.4)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=2.2.28)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=2.2.3)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=2.2.28)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, PYRAMID_VERSION=1.10.8)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=4.0.10)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, DJANGO_VERSION=1.11.29)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, TWISTED_VERSION=20.3.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=2.2.3)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=21.7.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, TWISTED_VERSION=21.7.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=3.2.18)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, TWISTED_VERSION=20.3.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=3.2.18)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, TWISTED_VERSION=22.10.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=1.11.29)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=4.1.7)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=4.1.7)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.5, DJANGO_VERSION=2.2.28)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, TWISTED_VERSION=21.7.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=4.0.10)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=22.10.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, PYRAMID_VERSION=1.10.8)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=2.2.28)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=2.2.28)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=1.11.29)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=3.2.18)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=1.1.4)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, FLASK_VERSION=2.2.3)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.10, TWISTED_VERSION=20.3.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, PYRAMID_VERSION=1.10.8)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=22.10.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=4.1.7)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=4.0.10)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, PYRAMID_VERSION=1.10.8)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=3.2.18)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=1.1.4)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=2.2.3)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=2.2.3)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=1.1.4)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=20.3.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, PYRAMID_VERSION=1.10.8)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=0.12.5 Werkzeug\>=0.7,\<1.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.12.13 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.63.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.14.2 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=4.1.7)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=2.2.28)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=2.2.28)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.50.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.40.0 httpx==0.18.1 python-multipart==0.0.5)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=3.2.18)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=22.10.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=22.10.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=21.7.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=4.0.10)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.7, TWISTED_VERSION=21.7.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=21.7.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=20.3.0)

trigger_serialize

Check failure on line 1111 in rollbar/test/test_rollbar.py

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=20.3.0)

trigger_serialize
except:
rollbar.report_exc_info()

Expand Down
Loading