You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The use case in the application is equivalent to the forEach example shown above, but the single request before already proeduces the seg fault.
The circumstances are very specific, but I try my best to completely describe the situation
Device: Raspberry Pi 4
Linux: 5.10.92-v8+ (aarch64) GNU/Linux
Docker Image: node:latest-slim
Node version: 17.4.0
Curl version: 7.74.0 (aarch64-unknown-linux-gnu)
OpenSSL version: 1.1.1k 25 Mar 2021
EDIT 1:
The error occurs because node17 updated openssl to 3.0.0, which is no compatible with the system version (1.1.1k).
Downgrading to Node16, which still uses 1.1.1 works.
The text was updated successfully, but these errors were encountered:
I suppose you had to build the addon from source, right?
This is probably the same issue described on #164. Basically, if you are building from the source, you must build the addon using the same OpenSSL version as the one used by Node.js itself. For more context please see the original issue. It is not something that can be easily fixed from the add-on side.
I got a segmentation fault using the library on my raspi 4 in a docker container.
segfault-handler reported the following stacktrace:
The error occurs only on aarch64, x86 works fine.
This test script exhibits the segmentation fault:
The use case in the application is equivalent to the
forEach
example shown above, but the single request before already proeduces the seg fault.The circumstances are very specific, but I try my best to completely describe the situation
EDIT 1:
The error occurs because node17 updated openssl to 3.0.0, which is no compatible with the system version (1.1.1k).
Downgrading to Node16, which still uses 1.1.1 works.
The text was updated successfully, but these errors were encountered: