Skip to content
Snippets Groups Projects
Commit 5931f64c authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Merge branch 'windowSize' of gitlab.com:xx_network/comms into windowSize

parents ba23bfbd ce33aa75
No related branches found
No related tags found
1 merge request!11Release
...@@ -403,6 +403,7 @@ func (h *Host) connectHelper() (err error) { ...@@ -403,6 +403,7 @@ func (h *Host) connectHelper() (err error) {
windowSize := atomic.LoadInt32(h.windowSize) windowSize := atomic.LoadInt32(h.windowSize)
if windowSize != 0 { if windowSize != 0 {
dialOpts = append(dialOpts, grpc.WithInitialWindowSize(windowSize)) dialOpts = append(dialOpts, grpc.WithInitialWindowSize(windowSize))
dialOpts = append(dialOpts, grpc.WithInitialConnWindowSize(windowSize))
} }
// Create the connection // Create the connection
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment