ibm-messaging / mq-mqi-nodejs

Calling IBM MQ from Node.js - a JavaScript MQI wrapper
Apache License 2.0
79 stars 42 forks source link

ConnxSync is not a function error #160

Closed ImaBadSlime closed 1 year ago

ImaBadSlime commented 1 year ago

mqi.js

exports.fOpen = function (jsqMgrName, jsCno, cb) { log.traceEntry('ConnxSync'); checkParamCB(cb); connx(jsqMgrName,jsCno,false,cb); log.traceExit('ConnxSync'); };

should be

exports.ConnxSync = function (jsqMgrName, jsCno, cb) { log.traceEntry('ConnxSync'); checkParamCB(cb); connx(jsqMgrName,jsCno,false,cb); log.traceExit('ConnxSync'); };

This typo is a source of problem fix pls =)

ibmmqmet commented 1 year ago

I don't see any typo in the current committed tree.

ImaBadSlime commented 1 year ago

True that was my bad, sorry