Skip to content

Commit 074dd16

Browse files
committed
added default value
1 parent 01fe6b7 commit 074dd16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws-opentelemetry-distro/src/amazon/opentelemetry/distro/aws_span_metrics_processor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ class AwsSpanMetricsProcessor(SpanProcessor):
4949
_force_flush_function: Callable
5050

5151
# no op function to act as a default function in case forceFlushFunction was
52-
# not supplied to the the constructor.
53-
def _no_op_function(self, timeout_millis) -> None:
52+
# not supplied to the the constructor.
53+
def _no_op_function(self, timeout_millis: float = None) -> None:
5454
return
5555

5656
def __init__(

0 commit comments

Comments
 (0)