Skip to content

Commit

Permalink
Fix missing argument in function that's only used on Ruby 3.2+
Browse files Browse the repository at this point in the history
I was testing on 3.1 so I missed this one >_>
  • Loading branch information
ivoanjo committed Dec 5, 2024
1 parent 10e4def commit 47b1706
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1968,7 +1968,8 @@ static uint64_t otel_span_id_to_uint(VALUE otel_span_id) {
gvl_waiting_started_wall_time_ns,
NULL,
NULL,
false // This is the extra sample before the wait begun; only the next sample will be in the gvl waiting state
/* is_gvl_waiting_state: */ false, // This is the extra sample before the wait begun; only the next sample will be in the gvl waiting state
/* is_safe_to_allocate_objects: */ true // This is similar to a regular cpu/wall sample, so it's also safe
);
}

Expand Down

0 comments on commit 47b1706

Please sign in to comment.