Skip to content

Commit

Permalink
Fix nesting of futures
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Sep 4, 2024
1 parent 9bf3040 commit 1e50f68
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ async def make_observations(params: MakeObservationsParams) -> MakeObservationsR
executor=process_pool,
)
)
measurement_count = sum(await asyncio.gather(*awaitables))
measurement_count = sum(await asyncio.gather(*awaitables))

current_span.set_attribute("total_runtime_ms", tbatch.ms)
# current_span.set_attribute("total_failure_count", total_failure_count)
Expand Down

0 comments on commit 1e50f68

Please sign in to comment.