From 00c49e33f60e421b1998c04c9538a696d1ae95a0 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Mon, 25 Mar 2024 13:04:22 +0900 Subject: [PATCH] Disable "strict_read" --- client/rb_client/resource_invoke.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/rb_client/resource_invoke.rb b/client/rb_client/resource_invoke.rb index 1fd9dfe..c2c1c37 100644 --- a/client/rb_client/resource_invoke.rb +++ b/client/rb_client/resource_invoke.rb @@ -6,7 +6,7 @@ class ResourceInvoke def initialize(host, port) @socket = Thrift::Socket.new(host, port) @transport = Thrift::BufferedTransport.new(@socket) - @protocol = Thrift::BinaryProtocol.new(@transport) + @protocol = Thrift::BinaryProtocol.new(@transport, false) @client = ResourceService::ResourceService::Client.new(@protocol) end