- Jamis
I wonder if your server is enabling zlib by default. Does adding this
to your recipes help at all?
ssh_options[:compression] = "none"
If not, what ssh server software are you connecting to?
- Jamis
- Jamis
Net::SSH.start('localhost', 'jamis', :compression => "zl...@openssh.com
") do |ssh|
ssh.exec "hostname"
ssh.loop
end
It starts and finishes just fine. Enabling debugging output shows that
zlib is enabled...but I don't get that bizarre message. Maybe it's a
function of the zlib library you have installed? Maybe something else?
Has anyone else encountered this?
- Jamis
On May 6, 2008, at 9:21 AM, Michael Irwin wrote:
ssh_options[:compression] = false
You might need to disable compression in your ~/.ssh/config, if you
have it set there.
- Jamis