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 adcfa0f commit 67ea4cdCopy full SHA for 67ea4cd
sentry_sdk/tracing.py
@@ -323,6 +323,20 @@ 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 sampled is not None:
334
335
+ "The `sampled` parameter is deprecated. Please use a traces_sampler to control sampling.",
336
337
338
339
340
if start_timestamp is None:
341
start_timestamp = datetime.now(timezone.utc)
342
elif isinstance(start_timestamp, float):
0 commit comments