You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "tustvold (via GitHub)" <gi...@apache.org> on 2023/04/03 16:13:52 UTC

[GitHub] [arrow-rs] tustvold commented on a diff in pull request #4011: Update tonic 0.9.1

tustvold commented on code in PR #4011:
URL: https://github.com/apache/arrow-rs/pull/4011#discussion_r1156174514


##########
arrow-flight/src/arrow.flight.protocol.rs:
##########
@@ -349,6 +349,22 @@ pub mod flight_service_client {
             self.inner = self.inner.accept_compressed(encoding);
             self
         }
+        /// Limits the maximum size of a decoded message.
+        ///
+        /// Default: `4MB`
+        #[must_use]
+        pub fn max_decoding_message_size(mut self, limit: usize) -> Self {
+            self.inner = self.inner.max_decoding_message_size(limit);
+            self
+        }

Review Comment:
   I presume so



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org