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
{{ message }}
This repository has been archived by the owner on Jul 28, 2020. It is now read-only.
When
[email protected]
receives an error and tries to call the function on the client object throughclient['recv_' + header.fname](message, header.mtype, dummy_seqid);
(line #83 ofthrift/lib/thrift/connection.js
of[email protected]
),header.fname = 'log'
. The associated function is defined here: https://github.com/Applifier/node-scribe/blob/master/lib/gen-nodejs/scribe.js#L156, asrecv_Log
(capitalL
instead of lowercase likeheader.fname
). This causes[email protected]
to choke and the app to crash.Issue #7 would resolve this issue for the most part, as the latest version of
thrift
checks for the existence ofclient['recv_' + header.fname]
before invoking it, https://git-wip-us.apache.org/repos/asf?p=thrift.git;a=blob;f=lib/nodejs/lib/thrift/connection.js;h=23cb01c79b6b839f020bfcb67bc0875221e94564;hb=HEAD#l138The text was updated successfully, but these errors were encountered: