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

add custom data to the correct payload key #473

Merged
merged 2 commits into from
Feb 10, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions rollbar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ def report_message(message, level='error', request=None, extra_data=None, payloa
message: the string body of the message
level: level to report at. One of: 'critical', 'error', 'warning', 'info', 'debug'
request: the request object for the context of the message
extra_data: dictionary of params to include with the message. 'body' is reserved.
extra_data: optional, will be included in the 'custom' section of the payload
payload_data: param names to pass in the 'data' level of the payload; overrides defaults.
"""
try:
Expand Down Expand Up @@ -862,7 +862,7 @@ def _report_message(message, level, request, extra_data, payload_data):

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

request = _get_actual_request(request)
_add_request_data(data, request)
Expand Down
4 changes: 2 additions & 2 deletions rollbar/test/test_loghandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
payload = send_payload.call_args[0][0]

self.assertEqual(payload['data']['body']['message']['body'], "Hello 1 world")
self.assertEqual(payload['data']['body']['message']['args'], (1, 'world'))
self.assertEqual(payload['data']['body']['message']['record']['name'], __name__)
self.assertEqual(payload['data']['custom']['args'], (1, 'world'))
self.assertEqual(payload['data']['custom']['record']['name'], __name__)

@mock.patch('rollbar.send_payload')
def test_string_or_int_level(self, send_payload):
Expand Down Expand Up @@ -102,7 +102,7 @@

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

Check failure on line 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.112.1 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=2.3.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, NONE)

bar

Check failure on line 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, PYRAMID_VERSION=2.0.2)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.38.2 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.101.1 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=5.0.8)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.112.1 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=2.3.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=3.2.25)

bar

Check failure on line 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.30.0 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, STARLETTE_VERSION=0.30.0 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=4.2.15)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, DJANGO_VERSION=5.0.8)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, NONE)

bar

Check failure on line 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.12, NONE)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.38.2 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.30.0 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, PYRAMID_VERSION=1.10.8)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, PYRAMID_VERSION=2.0.2)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, PYRAMID_VERSION=2.0.2)

bar

Check failure on line 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=5.0.8)

bar

Check failure on line 105 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 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.12, FASTAPI_VERSION=0.112.1 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, FLASK_VERSION=1.1.4)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, NONE)

bar

Check failure on line 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.38.2 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, DJANGO_VERSION=4.2.15)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=3.0.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, FASTAPI_VERSION=0.101.1 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=4.2.15)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.101.1 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, PYRAMID_VERSION=2.0.2)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=3.0.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=3.2.25)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=3.0.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.30.0 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, TWISTED_VERSION=22.10.0)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, FLASK_VERSION=2.3.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, STARLETTE_VERSION=0.38.2 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, TWISTED_VERSION=21.7.0)

bar

Check failure on line 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=2.3.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=4.2.15)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=3.0.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.101.1 httpx==0.24.1 python-multipart==0.0.9)

bar

Check failure on line 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.112.1 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.38.2 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=3.2.25)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, FLASK_VERSION=3.0.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.6, NONE)

bar

Check failure on line 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, NONE)

bar

Check failure on line 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, NONE)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=4.2.15)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.30.0 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=3.2.25)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, PYRAMID_VERSION=2.0.2)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.101.1 httpx==0.24.1 python-multipart==0.0.9)

bar

Check failure on line 105 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 105 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 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=3.2.25)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=2.3.3)

bar

Check failure on line 105 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 105 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 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.112.1 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=20.3.0)

bar

Check failure on line 105 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 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, PYRAMID_VERSION=2.0.2)

bar

Check failure on line 105 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 105 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 105 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 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, PYRAMID_VERSION=2.0.2)

bar

Check failure on line 105 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 105 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 105 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=20.3.0)

bar

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

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

Check failure on line 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.112.1 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=2.3.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, NONE)

bar

Check failure on line 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, PYRAMID_VERSION=2.0.2)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.38.2 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, FASTAPI_VERSION=0.101.1 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=5.0.8)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.112.1 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=2.3.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=3.2.25)

bar

Check failure on line 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.10, STARLETTE_VERSION=0.30.0 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, STARLETTE_VERSION=0.30.0 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=4.2.15)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, DJANGO_VERSION=5.0.8)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, NONE)

bar

Check failure on line 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.12, NONE)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.38.2 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, STARLETTE_VERSION=0.30.0 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, PYRAMID_VERSION=1.10.8)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, PYRAMID_VERSION=2.0.2)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, PYRAMID_VERSION=2.0.2)

bar

Check failure on line 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.11, DJANGO_VERSION=5.0.8)

bar

Check failure on line 144 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 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.12, FASTAPI_VERSION=0.112.1 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, FLASK_VERSION=1.1.4)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, NONE)

bar

Check failure on line 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.38.2 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, DJANGO_VERSION=4.2.15)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, FLASK_VERSION=3.0.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, FASTAPI_VERSION=0.101.1 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.10, DJANGO_VERSION=4.2.15)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, FASTAPI_VERSION=0.101.1 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, PYRAMID_VERSION=2.0.2)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=3.0.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=3.2.25)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.11, FLASK_VERSION=3.0.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, STARLETTE_VERSION=0.30.0 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, TWISTED_VERSION=22.10.0)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, FLASK_VERSION=2.3.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, STARLETTE_VERSION=0.38.2 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, TWISTED_VERSION=21.7.0)

bar

Check failure on line 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=2.3.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, DJANGO_VERSION=4.2.15)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, FLASK_VERSION=3.0.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.101.1 httpx==0.24.1 python-multipart==0.0.9)

bar

Check failure on line 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.112.1 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.38.2 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=3.2.25)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.12, FLASK_VERSION=3.0.3)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.6, NONE)

bar

Check failure on line 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, NONE)

bar

Check failure on line 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, NONE)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, DJANGO_VERSION=4.2.15)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, STARLETTE_VERSION=0.30.0 httpx==0.24.1 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.6, DJANGO_VERSION=3.2.25)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.9, PYRAMID_VERSION=2.0.2)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, FASTAPI_VERSION=0.101.1 httpx==0.24.1 python-multipart==0.0.9)

bar

Check failure on line 144 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 144 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 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, DJANGO_VERSION=3.2.25)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, FLASK_VERSION=2.3.3)

bar

Check failure on line 144 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 144 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 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, FASTAPI_VERSION=0.112.1 httpx==0.27.0 python-multipart==0.0.9)

bar

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

View workflow job for this annotation

GitHub Actions / build (3.8, TWISTED_VERSION=20.3.0)

bar

Check failure on line 144 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 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.6, PYRAMID_VERSION=2.0.2)

bar

Check failure on line 144 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 144 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 144 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 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.7, PYRAMID_VERSION=2.0.2)

bar

Check failure on line 144 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 144 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 144 in rollbar/test/test_loghandler.py

View workflow job for this annotation

GitHub Actions / build (3.9, TWISTED_VERSION=20.3.0)

bar

def _raise_ex():
try:
Expand Down
Loading