Skip to content
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

[Issue #655] Adding send message constraints for message size and batch size #760

Merged
merged 4 commits into from
Feb 13, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[Issue #655] fix style check issue.
  • Loading branch information
jinrongluo committed Feb 9, 2022
commit 0761ae535a90b275a7d637658eba48e444bc039b
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ public void run() {

String content = new String(event.getData().toBytes(), StandardCharsets.UTF_8);
if (content.length() > eventMeshTCPServer.getEventMeshTCPConfiguration().eventMeshEventSize) {
throw new Exception("event size exceeds the limit: " +
eventMeshTCPServer.getEventMeshTCPConfiguration().eventMeshEventSize);
throw new Exception("event size exceeds the limit: "
+ eventMeshTCPServer.getEventMeshTCPConfiguration().eventMeshEventSize);
}

//do acl check in sending msg
Expand Down