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
Run any Node.js method that uses uv_barrier_init() libuv function. From Node 20.3.0 and above uv_barrier_init() function is not exported from node binary and because of this, a runtime error (undefined symbol) is reported while executing any Node.js method that depends on this function.
How often does it reproduce? Is there a required condition?
Consistent.
Prerequisite: The Node.js method must use the uv_barrier_init()libuv function.
What is the expected behavior? Why is that the expected behavior?
uv_barrier_init() libuv function is an essential component in our node-oracledb driver for accessing Oracle Database. It should not throw any errors.
What do you see instead?
We get the following error: node: symbol lookup error: <path_to_dir>/<binary>: undefined symbol: uv_barrier_init
Additional information
if uv_barrier_init() libuv function is deprecated, please provide the alternative.
The text was updated successfully, but these errors were encountered:
Version
20.3.0.0
Platform
Linux x64
Subsystem
No response
What steps will reproduce the bug?
Run any Node.js method that uses
uv_barrier_init()
libuv function. From Node 20.3.0 and aboveuv_barrier_init(
) function is not exported from node binary and because of this, a runtime error (undefined symbol) is reported while executing any Node.js method that depends on this function.How often does it reproduce? Is there a required condition?
Consistent.
Prerequisite: The Node.js method must use the
uv_barrier_init()
libuv function.What is the expected behavior? Why is that the expected behavior?
uv_barrier_init()
libuv function is an essential component in our node-oracledb driver for accessing Oracle Database. It should not throw any errors.What do you see instead?
We get the following error:
node: symbol lookup error: <path_to_dir>/<binary>: undefined symbol: uv_barrier_init
Additional information
if
uv_barrier_init()
libuv function is deprecated, please provide the alternative.The text was updated successfully, but these errors were encountered: