Merge pull request #48 from gfanton/gfanton/full-namespace

Get full namespace
This commit is contained in:
Mathieu Acthernoene 2017-02-11 17:54:00 +01:00 committed by GitHub
commit b3496838ad

View File

@ -210,7 +210,7 @@ func shortType(s string) string {
func namespacedFlowType(s string) string {
trimmed := strings.TrimLeft(s, ".")
splitted := strings.Split(trimmed, ".")
return strings.Join(splitted[1:], "$")
return strings.Join(splitted, "$")
}
func httpPath(m *descriptor.MethodDescriptorProto) string {