client and processor do not inherit from the proper namespace scope
-------------------------------------------------------------------
Key: THRIFT-454
URL: https://issues.apache.org/jira/browse/THRIFT-454
Project: Thrift
Issue Type: Bug
Components: Compiler (Ruby)
Reporter: Michael Stockton
Assignee: Michael Stockton
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
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.