File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -276,12 +276,6 @@ def finished(self, value: bool) -> None:
276276 If the span is already finished and a truthy value is provided
277277 no action will occur.
278278 """
279- deprecate (
280- prefix = "The finished setter is deprecated" ,
281- message = """Use the finish() method to finish a span.""" ,
282- category = DDTraceDeprecationWarning ,
283- removal_version = "4.0.0" ,
284- )
285279 if value :
286280 if not self .finished :
287281 self .duration_ns = Time .time_ns () - self .start_ns
@@ -610,8 +604,6 @@ def record_exception(
610604 :param attributes: Optional dictionary of additional attributes to add to the exception event.
611605 These attributes will override the default exception attributes if they contain the same keys.
612606 Valid attribute values include (homogeneous array of) strings, booleans, integers, floats.
613- :param timestamp: Deprecated.
614- :param escaped: Deprecated.
615607 """
616608 tb = self ._get_traceback (type (exception ), exception , exception .__traceback__ )
617609
You can’t perform that action at this time.
0 commit comments