Skip to content

Commit 706d2d2

Browse files
authored
Revert "chore: Deprecate same_process_as_parent (#4244)" (#4290)
This reverts commit e05ed0a. `same_process_as_parent` is `True` by default, so we actually don't have a way of detecting whether this was set explicitly by the user or not. Removing the deprecation altogether -- no one's using this. Closes #4289
1 parent 296e288 commit 706d2d2

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

sentry_sdk/tracing.py

-7
Original file line numberDiff line numberDiff line change
@@ -323,13 +323,6 @@ def __init__(
323323

324324
self.scope = self.scope or hub.scope
325325

326-
if same_process_as_parent is not None:
327-
warnings.warn(
328-
"The `same_process_as_parent` parameter is deprecated.",
329-
DeprecationWarning,
330-
stacklevel=2,
331-
)
332-
333326
if start_timestamp is None:
334327
start_timestamp = datetime.now(timezone.utc)
335328
elif isinstance(start_timestamp, float):

0 commit comments

Comments
 (0)