From c84d67e85b7939abffab996995562be06edb0854 Mon Sep 17 00:00:00 2001
From: murgatroid99 <mlumish@google.com>
Date: Mon, 3 Apr 2017 16:52:03 -0700
Subject: [PATCH] Keep changes from #10093

---
 src/node/src/protobuf_js_5_common.js | 1 +
 src/node/src/protobuf_js_6_common.js | 1 +
 2 files changed, 2 insertions(+)

diff --git a/src/node/src/protobuf_js_5_common.js b/src/node/src/protobuf_js_5_common.js
index b16228b9ee..62cf2f4aca 100644
--- a/src/node/src/protobuf_js_5_common.js
+++ b/src/node/src/protobuf_js_5_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,
diff --git a/src/node/src/protobuf_js_6_common.js b/src/node/src/protobuf_js_6_common.js
index 7e523731d3..cac0f71145 100644
--- a/src/node/src/protobuf_js_6_common.js
+++ b/src/node/src/protobuf_js_6_common.js
@@ -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,
-- 
GitLab