summaryrefslogtreecommitdiff
path: root/test/rs
diff options
context:
space:
mode:
authorJames E. King, III <jking@apache.org>2017-11-19 20:17:33 -0500
committerJames E. King, III <jking@apache.org>2017-11-20 07:27:03 -0500
commit39eaae6675f01ff844b35c04ebd50090dc413624 (patch)
tree4ed743593fdb4038e758dfb3491a56bff974a795 /test/rs
parent6e883f9d2307b00ca76aa28c286f28d8741a8197 (diff)
downloadthrift-39eaae6675f01ff844b35c04ebd50090dc413624.tar.gz
THRIFT-2013: update docker for artful (go back to lua 5.2) and enhance
cpp client to send 0,1,2,4,8,...,131072 size binary tests, this exposed problems in the erl and rs servers and those tests have been disabled for now.
Diffstat (limited to 'test/rs')
-rw-r--r--test/rs/src/bin/test_client.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/rs/src/bin/test_client.rs b/test/rs/src/bin/test_client.rs
index 7c11ad560..0df2f009f 100644
--- a/test/rs/src/bin/test_client.rs
+++ b/test/rs/src/bin/test_client.rs
@@ -126,7 +126,7 @@ fn build_protocols(
};
let (i_prot, o_prot): (Box<TInputProtocol>, Box<TOutputProtocol>) = match protocol {
- "binary" | "multi:binary" => {
+ "binary" => {
(Box::new(TBinaryInputProtocol::new(i_tran, true)),
Box::new(TBinaryOutputProtocol::new(o_tran, true)))
}
@@ -139,7 +139,7 @@ fn build_protocols(
),
))
}
- "compact" | "multi:compact" => {
+ "compact" => {
(Box::new(TCompactInputProtocol::new(i_tran)),
Box::new(TCompactOutputProtocol::new(o_tran)))
}