We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a1364d commit c0631a3Copy full SHA for c0631a3
sentry_sdk/tracing.py
@@ -323,6 +323,13 @@ def __init__(
323
324
self.scope = self.scope or hub.scope
325
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
+
333
if start_timestamp is None:
334
start_timestamp = datetime.now(timezone.utc)
335
elif isinstance(start_timestamp, float):
0 commit comments