Jens Geyer created THRIFT-5395:
----------------------------------
Summary: inconsistent treatment of methods ending in "Async"
Key: THRIFT-5395
URL: https://issues.apache.org/jira/browse/THRIFT-5395
Project: Thrift
Issue Type: Bug
Components: netstd - Compiler
Reporter: Jens Geyer
Assignee: Jens Geyer
{code}
service MyService {
void TestXsync()
void TestAsync()
}
{code}
While the first works, the second does not::
{code}
await OutputProtocol.WriteMessageBeginAsync(new TMessage("TestXsync", ...
await OutputProtocol.WriteMessageBeginAsync(new TMessage("TestAsyncAsync", ...
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)