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

[lgwebos] Fix Text Message Size Bug #10404

Merged
merged 1 commit into from
Mar 28, 2021
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ protected void activate(ComponentContext componentContext) {
// reduce timeout from default 15sec
this.webSocketClient.setConnectTimeout(1000);

// channel and app listing are json docs up to 3MB
this.webSocketClient.getPolicy().setMaxTextMessageSize(3 * 1024 * 1024);
// channel and app listing are json docs up to 4MB
this.webSocketClient.getPolicy().setMaxTextMessageSize(4 * 1024 * 1024);

// since this is not using openHAB's shared web socket client we need to start and stop
try {
Expand Down