Skip to content

Conversation

@pragnagopa
Copy link
Member

Fixes #5650

@pragnagopa pragnagopa requested review from mhoeger and yojagad March 17, 2020 15:07
private Server _server;
private bool _disposed = false;
public const int MaxMessageLengthBytes = 128 * 1024 * 1024;
public const int MaxMessageLengthBytes = int.MaxValue;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a chance we could start run into timeout issues the payload size is close to this new max ?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good catch @mhoeger. Fixed it.

@yojagad - there is a chance that app might run into out-of-memory exception which is by design.

Copy link
Contributor

@mhoeger mhoeger left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Grpc]Increase MaxMessageLength to int.MaxValue

3 participants