rajasekharb commented on a change in pull request #4508:
URL: https://github.com/apache/camel/pull/4508#discussion_r511862988
##########
File path:
components/camel-grpc/src/main/java/org/apache/camel/component/grpc/GrpcConfiguration.java
##########
@@ -353,15 +356,33 @@ public void setFlowControlWindow(int flowControlWindow) {
this.flowControlWindow = flowControlWindow;
}
+ public int getMaxMessageSize() {
+ return maxMessageSize;
+ }
+
/**
* The maximum message size allowed to be received/sent (MiB)
*/
public void setMaxMessageSize(int maxMessageSize) {
this.maxMessageSize = maxMessageSize;
}
- public int getMaxMessageSize() {
- return maxMessageSize;
+ /**
+ * Lets the camel route to take control over stream observer. If this
value is set to true, then the stream
Review comment:
I agree. Made the relevant changes as per the conversation on zulip chat
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]