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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to