commit | dfc22ad2059312018777265af0b8684f0173b9dc | [log] [tgz] |
---|---|---|
author | Jens Geyer <jensg@apache.org> | Fri May 08 21:10:13 2015 +0200 |
committer | Jens Geyer <jensg@apache.org> | Fri May 08 21:43:50 2015 +0200 |
tree | 9a1d6a5589087d420c55f6180fcfb9e2d6fd70ec | |
parent | 24ea0bf5df0e431416fca897077af220a27b0320 [diff] [blame] |
THRIFT-3128 Go generated code produces name collisions between services Client: Go Patch: Adam Beberg
diff --git a/lib/go/test/NamesTest.thrift b/lib/go/test/NamesTest.thrift index b59a5e0..e7e9563 100644 --- a/lib/go/test/NamesTest.thrift +++ b/lib/go/test/NamesTest.thrift
@@ -18,5 +18,15 @@ # struct NamesTest { - 1: required string type + 1: required string type +} + +service NameCollisionOne +{ + void blahBlah() +} + +service NameCollisionTwo +{ + void blahBlah() }