summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Terceiro <asa@terceiro.xyz>2022-05-19 18:19:14 -0300
committerAntonio Terceiro <asa@terceiro.xyz>2022-05-19 18:21:16 -0300
commit6d33cad4dfbd3741492f500308484976dc9e035e (patch)
tree31743c1d70f550abf5d3d46f139b7db9b94e3233
parent09822870696eaac1b2e739a266b1aa8d6fd64a1c (diff)
downloadnet-ssh-6d33cad4dfbd3741492f500308484976dc9e035e.tar.gz
Channel: drop debugging statement
After upgrading to net-ssh 7.0.0, I get several lines like `E:TERM V:xterm` printed in the terminal when connecting to hosts. I'm assuming this slipped by mistake in commit 5e79b6687771 ("Fixed integration test opensshd kill")
-rw-r--r--lib/net/ssh/connection/channel.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/net/ssh/connection/channel.rb b/lib/net/ssh/connection/channel.rb
index 6fcf790..efe6c94 100644
--- a/lib/net/ssh/connection/channel.rb
+++ b/lib/net/ssh/connection/channel.rb
@@ -686,7 +686,6 @@ module Net
#
# channel.set_remote_env foo: 'bar', baz: 'whale'
def set_remote_env(env)
- env.each { |key, value| puts "E:#{key} V:#{value}" }
env.each { |key, value| self.env(key, value) }
end
end