summaryrefslogtreecommitdiff
path: root/test/haxe
diff options
context:
space:
mode:
authorJens Geyer <jensg@apache.org>2020-03-22 13:46:34 +0100
committerJens Geyer <jensg@apache.org>2020-03-22 15:30:27 +0100
commit4a33b188f44ce097e25ca56ebd48026b41effd6a (patch)
treefefc19cf2460bf72709faf988bc186f5bb93a0de /test/haxe
parent24ab31fc5738532b082c7b0638bfcd2a7a26d7c5 (diff)
downloadthrift-4a33b188f44ce097e25ca56ebd48026b41effd6a.tar.gz
THRIFT-5145 Streamline --pipe and --named-pipe options in the code base
Client: Test suite Patch: Jens Geyer This closes #2065
Diffstat (limited to 'test/haxe')
-rw-r--r--test/haxe/src/Arguments.hx6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/haxe/src/Arguments.hx b/test/haxe/src/Arguments.hx
index cc1074987..56e525356 100644
--- a/test/haxe/src/Arguments.hx
+++ b/test/haxe/src/Arguments.hx
@@ -103,7 +103,7 @@ class Arguments
+" --port arg (=9090) Port number to listen / connect to\n"
/* not supported yet
+" --domain-socket arg Unix Domain Socket (e.g. /tmp/ThriftTest.thrift)\n"
- +" --named-pipe arg Windows Named Pipe (e.g. MyThriftPipe)\n"
+ +" --pipe arg Windows Named Pipe (e.g. MyThriftPipe)\n"
*/
+" --protocol arg (=binary) protocol: binary, compact, json\n"
/* not supported yet
@@ -187,8 +187,8 @@ class Arguments
// --domain-socket arg Unix Domain Socket (e.g. /tmp/ThriftTest.thrift)
throw "domain sockets not supported yet";
}
- else if (arg == "--named-pipe") {
- // --named-pipe arg Windows Named Pipe (e.g. MyThriftPipe)
+ else if (arg == "--pipe") {
+ // --pipe arg Windows Named Pipe (e.g. MyThriftPipe)
throw "named pipes not supported yet";
}
else if (arg == "--protocol") {