Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PROF-10422] Fix flaky spec in profiler due to race #3934

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,11 @@

it do
expect(Datadog.logger).to receive(:warn).with(/GVL profiling is not supported/)
proc_called = Queue.new

cpu_and_wall_time_worker.start
cpu_and_wall_time_worker.start(on_failure_proc: proc { proc_called << true })

proc_called.pop
end
end

Expand Down
Loading