We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Importing ZMQ_CONFLATE gives undefined I cannot access/use the ZMQ_CONFLATE option
Reproducing
import zeromq from 'zeromq/v5-compat.js'; const { ZMQ_SNDHWM } = zeromq; // Import the socket option constant console.log(`ZMQ_SNDHWM = ${ZMQ_SNDHWM}`); const { ZMQ_CONFLATE } = zeromq; // Import the socket option constant console.log(`ZMQ_CONFLATE = ${ZMQ_CONFLATE}`);
output...
ZMQ_SNDHWM = 23 ZMQ_CONFLATE = undefined
Expected behavior The import of ZMQ_CONFLATE should succeed and return an integer value
Tested on
The text was updated successfully, but these errors were encountered:
If I grep the zeromq src directory I get this which may be a clue (missing in src/compat.ts?)
grep -r CONFLATE node_modules/zeromq/src/ node_modules/zeromq/src/index.ts: * ZMQ_CONFLATE node_modules/zeromq/src/index.ts: * ZMQ_CONFLATE node_modules/zeromq/src/index.ts: * ZMQ_CONFLATE node_modules/zeromq/src/index.ts: * ZMQ_CONFLATE node_modules/zeromq/src/index.ts: * ZMQ_CONFLATE grep -r SNDHWM node_modules/zeromq/src/ node_modules/zeromq/src/socket.cc: ZMQ_SNDHWM, node_modules/zeromq/src/compat.ts: ZMQ_SNDHWM: 23, node_modules/zeromq/src/compat.ts: case longOptions.ZMQ_SNDHWM: node_modules/zeromq/src/compat.ts: case longOptions.ZMQ_SNDHWM: node_modules/zeromq/src/index.ts: * ZMQ_SNDHWM
Sorry, something went wrong.
No branches or pull requests
Importing ZMQ_CONFLATE gives undefined
I cannot access/use the ZMQ_CONFLATE option
Reproducing
output...
Expected behavior
The import of ZMQ_CONFLATE should succeed and return an integer value
Tested on
The text was updated successfully, but these errors were encountered: