Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a 16MB recv buffer in proxy/sanssh instead of the default 4MB. (#373
) We occasionally hit issues due to the size limitations. Calls like file reads and streaming exec are fine because each individual message is significantly smaller than 4MB, but non-streaming exec and some other unary calls that return large blobs of data can be at risk of hitting the limit. Increasing the limit lets us keep using unary calls instead of dealing with the increased complexity of turning them into streaming calls. This has a minor risk of increasing memory usage when we would previously fail calls. Given the nature of sansshell, I think that's an acceptable tradeoff.
- Loading branch information