commit | 426ab8680126ac914c566adbcda3d6e93d57df64 | [log] [tgz] |
---|---|---|
author | Jens Geyer <jensg@apache.org> | Mon Mar 02 23:37:15 2015 +0100 |
committer | Jens Geyer <jensg@apache.org> | Thu Mar 05 23:43:23 2015 +0100 |
tree | c168201bc2b7a232688865fbdbb306ac5e3b51ea | |
parent | 6f7399b355b77b3e6dc32ffa475d42493afe2d90 [diff] [blame] |
THRIFT-3022 Compact protocol for Haxe Client: Haxe Patch: Jens Geyer This closes #388
diff --git a/test/haxe/src/TestServer.hx b/test/haxe/src/TestServer.hx index 502d0d1..4490a8c 100644 --- a/test/haxe/src/TestServer.hx +++ b/test/haxe/src/TestServer.hx
@@ -69,8 +69,9 @@ case json: trace("- json protocol"); protfactory = new TJSONProtocolFactory(); - default: - throw "Unhandled protocol"; + case compact: + trace("- compact protocol"); + protfactory = new TCompactProtocolFactory(); }