Skip to content

Commit

Permalink
DBZ-8201: 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 authored Sep 9, 2024
1 parent d463881 commit d9043b2
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 d9043b2

Please sign in to comment.