You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "Michael Stockton (JIRA)" <ji...@apache.org> on 2009/04/12 21:57:14 UTC

[jira] Updated: (THRIFT-454) client and processor do not inherit from the proper namespace scope

     [ https://issues.apache.org/jira/browse/THRIFT-454?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Michael Stockton updated THRIFT-454:
------------------------------------

    Patch Info: [Patch Available]

> 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
>         Attachments: thrift-454.patch
>
>
> 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.