Skip to content

Commit 5224c22

Browse files
author
Osmar Coronel
committed
bababuah
1 parent 0834f87 commit 5224c22

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

sentry_sdk/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def _prepare_event(
163163
]
164164
}
165165

166-
_update_options()
166+
self._update_options()
167167
for key in "release", "environment", "server_name", "dist":
168168
if event.get(key) is None and self.options[key] is not None: # type: ignore
169169
event[key] = text_type(self.options[key]).strip() # type: ignore

tests/integrations/beam/test_beam.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
pytest.importorskip("dill")
55
pytest.importorskip("apache_beam")
66

7+
import dill
78
from sentry_sdk.integrations.beam import (
89
BeamIntegration,
910
_wrap_task_call,

0 commit comments

Comments
 (0)