-
Notifications
You must be signed in to change notification settings - Fork 29
chore: grpc server configurable msg size #662
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
Conversation
🚨 Bugbot Trial ExpiredYour team's Bugbot trial has expired. Please contact your team administrator to turn on the paid plan to continue using Bugbot. A team admin can activate the plan in the Cursor dashboard. |
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.
Pull Request Overview
This PR adds configuration support for customizable gRPC message size limits in the EOTS manager. Previously, the system used default gRPC message size limits, but now administrators can configure both send and receive message size limits through configuration.
- Adds
GRPCMaxContentLengthconfiguration field with validation and default value (16MB) - Configures both server-side max send/receive message sizes when the option is set
- Updates client to use configurable message size limits
Reviewed Changes
Copilot reviewed 21 out of 21 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| eotsmanager/config/config.go | Adds new configuration field with validation and default value |
| eotsmanager/service/server.go | Applies configurable message size limits to gRPC server options |
| eotsmanager/client/rpcclient.go | Updates client to use configurable receive message size |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
closes #660 <hr>This is an automatic backport of pull request #662 done by [Mergify](https://mergify.com). Co-authored-by: Lazar <12626340+Lazar955@users.noreply.github.com>
closes #660