-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: increase max receive message size #399
Conversation
tck/package.json
Outdated
@@ -11,7 +11,8 @@ | |||
}, | |||
"devDependencies": { | |||
"testcontainers": "7.10.0", | |||
"typescript": "4.3.4" | |||
"typescript": "4.3.4", | |||
"protobufjs": "6.11.3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was to work around #398 until we have a better solution.
be936f7
to
a58a095
Compare
a58a095
to
b4ec291
Compare
This increases the gRPC maximum receive message size to 12MB, and also makes both it and the max send size configurable.
b4ec291
to
1aa0f77
Compare
@jroper, I rebased this PR and did a push force. The goal is to merge and release it soon. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Failed because of some documentation issue. I won't have time to check this. @jroper, could have a look? (watch-out, I did a force-push on your branch) |
That wasn't enough, the ChannelSettings interface needs to go in the exports in |
Added |
This increases the gRPC maximum receive message size to 12MB, and also makes both it and the max send size configurable.