sinewalker / dotfiles

OS X / Linux dotfiles.
MIT License
0 stars 1 forks source link

analyse-web causes high CPU when using SSH ControlMaster #31

Closed sinewalker closed 6 years ago

sinewalker commented 6 years ago

Work-around for now: temporarily disable ControlMaster

The log file continues to stream after the function "kills" the SSH process, because it's actually coming through the master.

sinewalker commented 6 years ago

disable by commenting out any ControlMaster entries in ~/.ssh/config

sinewalker commented 6 years ago

Reviewing issues this morning, I thought: perhaps analyse-web could use ssh-reset to clean up it's connection?

sinewalker commented 6 years ago

Also this Stack-Overflow question: how to close/kill SSH ControlMaster connections has some enhancements I should make to ssh-reset

Indeed it aslo mentions ssh -S none which may be all I need for analyse-web to not use a ControlMaster

sinewalker commented 6 years ago

Commit #31c6d66 fixes