You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, for a proof of concept study we used an ssh tunnel to connect to our live serverfarm.
We hat problems in writing with puts to the ssh connection so we change ist into
writes with an additional "\n" in the end.
Hi, for a proof of concept study we used an ssh tunnel to connect to our live serverfarm.
We hat problems in writing with puts to the ssh connection so we change ist into
writes with an additional "\n" in the end.
Then it works!
Here is my diff:
'38c38
'< @munin.write(cmd+"\n")
'---
'> @munin.puts(cmd)
'65c65
'< @carbon.write(msg+"\n")
'---
'> @carbon.puts(msg)
The text was updated successfully, but these errors were encountered: