THRIFT-5924: UUID support for NodeTS
Client: ts,js
Patch: CJCombrink
This closes #3331
diff --git a/lib/nodets/test/client.ts b/lib/nodets/test/client.ts
index c2666bc..99b5960 100644
--- a/lib/nodets/test/client.ts
+++ b/lib/nodets/test/client.ts
@@ -28,9 +28,10 @@
import { program } from "commander";
program
- .option("--port <port>", "Set thrift server port number to connect", Number.parseInt, 9090)
+ .option("--port <port>", "Set thrift server port number to connect", (v) => parseInt(v, 10), 9090)
.option("--promise", "test with promise style functions")
- .option("--protocol", "Set thrift protocol (binary) [protocol]")
+ .option('--protocol <protocol>', '"Set thrift protocol (binary) [protocol]"')
+ .option('--transport <transport>', '"Set thrift transport (buffered) [transport]"')
.parse(process.argv);