-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 0.1
-
Component/s: Ruby - Compiler
-
Labels:None
-
Patch Info:Patch Available
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