Procházet zdrojové kódy

Ignore SshConnectionException while closing channel.

drieseng před 9 roky
rodič
revize
5928052150
1 změnil soubory, kde provedl 8 přidání a 1 odebrání
  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