otel-profiling-agent
otel-profiling-agent copied to clipboard
Unwinding failure with Node v24.11.1 (current LTS, both amd64 and arm64)
Summary
I've noticed this after executing some test workloads for an unrelated issue. I also tested the following Node versions where unwinding works (both arm64 and amd64):
v20.19.1v22.21.1v23.11.1
To reproduce
$ nvm install v24.11.1
$ node --version
v24.11.1
$ node hello3.js
hello3.js
function bar(a, s) {
a(s)
//ads
}
function foo() {
bar(a, "Hello world!")
}
console.trace("I am here");
a = console.log
while (1) {
foo()
}
Expected output
Actual output
@gnurizen Maybe Polar Signals have a fix (IIRC you've previously contributed ARM64 Node.JS support) that you'd like to contribute?
I think @umanwizard you fixed this already, no?