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

Jens Geyer updated THRIFT-1554:
-------------------------------

    Description: 
Given

{code}
service SharedService {
  SharedStruct getStruct(1: i32 key)
}
{code}

and

{code}
service Calculator extends shared.SharedService {
  // some methods
}
{code}

then the inherited method getStruct() cannot be called, because the server is 
not able to resolve the method name into an adress. Additionally, the result 
value of the table lookup operation is not checked correctly.

  was:
Given

{code}
service SharedService {
  SharedStruct getStruct(1: i32 key)
}
{code}

and

{code}
service Calculator extends shared.SharedService {
  // some methods
}
{code}

then the inherited method getStruct() cannot be called, because the server is 
not able to resolve the method name into an adress.


    
> Inherited service methods are not resolved in derived service implementations
> -----------------------------------------------------------------------------
>
>                 Key: THRIFT-1554
>                 URL: https://issues.apache.org/jira/browse/THRIFT-1554
>             Project: Thrift
>          Issue Type: Bug
>          Components: Delphi - Compiler
>    Affects Versions: 0.8, 0.9
>            Reporter: Jens Geyer
>             Fix For: 0.9
>
>
> Given
> {code}
> service SharedService {
>   SharedStruct getStruct(1: i32 key)
> }
> {code}
> and
> {code}
> service Calculator extends shared.SharedService {
>   // some methods
> }
> {code}
> then the inherited method getStruct() cannot be called, because the server is 
> not able to resolve the method name into an adress. Additionally, the result 
> value of the table lookup operation is not checked correctly.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to