Keep changes from #10093

pull/10204/head
murgatroid99 8 years ago
parent a5ea8f2150
commit c84d67e85b
  1. 1
      src/node/src/protobuf_js_5_common.js
  2. 1
      src/node/src/protobuf_js_6_common.js

@ -120,6 +120,7 @@ exports.getProtobufServiceAttrs = function getProtobufServiceAttrs(service,
return _.camelCase(method.name);
}), _.map(service.children, function(method) {
return {
originalName: method.name,
path: prefix + method.name,
requestStream: method.requestStream,
responseStream: method.responseStream,

@ -121,6 +121,7 @@ exports.getProtobufServiceAttrs = function getProtobufServiceAttrs(service,
return _.camelCase(method.name);
}), _.map(service.methods, function(method) {
return {
originalName: method.name,
path: prefix + method.name,
requestStream: !!method.requestStream,
responseStream: !!method.responseStream,

Loading…
Cancel
Save