Skip to content

Commit

Permalink
[PROF-8667] Slightly bigger upper bound on hash sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexJF committed Dec 21, 2023
1 parent fdd85b5 commit 1579489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/datadog/profiling/stack_recorder_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ def sample_allocation(obj)
# Basic object + 4 table entries + no bins
(40 + 4 * 16) * sample_rate,
# Add extra padding to hash itself as well as each entry and 8 bins
(80 + 4 * 32 + 8 * 4) * sample_rate,
(80 + 4 * 32 + 8 * 16) * sample_rate,
)
)
)
Expand Down

0 comments on commit 1579489

Please sign in to comment.