Skip to content

Commit

Permalink
fix(profiling): Typo in flamegraph query splitting (#76630)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zylphrex committed Aug 27, 2024
1 parent 8fe12c8 commit 5e6bc97
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/sentry/profiles/flamegraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,8 +477,7 @@ def get_chunks_for_profilers(

chunk_size = options.get("profiling.continuous-profiling.chunks-query.size")
queries = [
self._create_chunks_query(profiler_metas)
for chunk in chunked(profiler_metas, chunk_size)
self._create_chunks_query(chunk) for chunk in chunked(profiler_metas, chunk_size)
]

results = self._query_chunks_for_profilers(queries)
Expand Down

0 comments on commit 5e6bc97

Please sign in to comment.