瀏覽代碼

Ignore SshConnectionException while closing channel.

drieseng 9 年之前
父節點
當前提交
5928052150
共有 1 個文件被更改,包括 8 次插入1 次删除
  1. 8 1
      src/Renci.SshNet/Channels/Channel.cs

+ 8 - 1
src/Renci.SshNet/Channels/Channel.cs

@@ -659,7 +659,14 @@ namespace Renci.SshNet.Channels
             // the channel, or as response to a SSH_MSG_CHANNEL_CLOSE message sent by the server
             if (wait && _closeMessageSent == Sent)
             {
-                WaitOnHandle(_channelClosedWaitHandle);
+                try
+                {
+                    WaitOnHandle(_channelClosedWaitHandle);
+                }
+                catch (SshConnectionException)
+                {
+                    // ignore connection failures as we're closing the channel anyway
+                }
             }
 
             // reset indicators in case we want to reopen the channel; these are safe to reset