Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
Patch Available
Description
Given the following:
#bar.thrift
namespace rb xyz
service Bar {
void who();
}
#foo.thrift
include "bar.thrift"
namespace rb abc
service Foo extends bar.Bar {
void doit();
}
Client and processor stubs for foo.thrift do not take into account bar.thrift's namespace.
module Abc; module Foo;
class Client < Bar::Client; end
class Processor < Bar::Processor; end
end; end