Skip to content

Commit

Permalink
DBZ-7909: Making sure RequestedFrameMax get sent to StreamClient
Browse files Browse the repository at this point in the history
This fixes an issue I was having where I was setting the frame_max variable on the connection configuration but it was not propagating to the StreamClient. This patch fixes this issue.
  • Loading branch information
zikphil committed Sep 10, 2024
1 parent d463881 commit 29f1f63
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ void connect() {
.username(factory.getUsername())
.password(factory.getPassword())
.virtualHost(factory.getVirtualHost())
.requestedMaxFrameSize(factory.getRequestedFrameMax())
.build();
}
catch (StreamException | IllegalArgumentException e) {
Expand Down

0 comments on commit 29f1f63

Please sign in to comment.