Skip to content

Commit f4e6163

Browse files
committed
fix(tests): Increase polling duration back to 0.2s
1 parent ba14852 commit f4e6163

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/profiler/test_continuous_profiler.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -807,8 +807,8 @@ def test_continuous_profiler_auto_start_and_stop_sampled(
807807
assert profiler_id is not None, "profiler should be running"
808808
profiler_ids.add(profiler_id)
809809

810-
# Poll up to 0.143 seconds (every 10ms) for the profiler to stop
811-
deadline = time.monotonic() + 0.143
810+
# Poll up to 0.2 seconds (every 10ms) for the profiler to stop
811+
deadline = time.monotonic() + 0.2
812812
while time.monotonic() < deadline:
813813
if get_profiler_id() is None:
814814
break
@@ -895,8 +895,8 @@ def test_continuous_profiler_auto_start_and_stop_sampled_span_streaming(
895895
assert profiler_id is not None, "profiler should be running"
896896
profiler_ids.add(profiler_id)
897897

898-
# Poll up to 0.143 seconds (every 10ms) for the profiler to stop
899-
deadline = time.monotonic() + 0.143
898+
# Poll up to 0.2 seconds (every 10ms) for the profiler to stop
899+
deadline = time.monotonic() + 0.2
900900
while time.monotonic() < deadline:
901901
if get_profiler_id() is None:
902902
break

0 commit comments

Comments
 (0)