Merge pull request #6300 from dmitriykovalev/master

Fixing invalid usage of getProtobufServiceAttrs() function.
pull/6329/head
Jan Tattermusch 9 years ago
commit d79b7abf72
  1. 3
      src/node/src/client.js

@ -815,8 +815,7 @@ exports.waitForClientReady = function(client, deadline, callback) {
* @return {function(string, Object)} New client constructor
*/
exports.makeProtobufClientConstructor = function(service, options) {
var method_attrs = common.getProtobufServiceAttrs(service, service.name,
options);
var method_attrs = common.getProtobufServiceAttrs(service, options);
var deprecatedArgumentOrder = false;
if (options) {
deprecatedArgumentOrder = options.deprecatedArgumentOrder;

Loading…
Cancel
Save