ook IOError opvangen bij disconnect

This commit is contained in:
Ward Wouts 2005-01-30 22:55:39 +00:00
parent 98d543ebd4
commit 308adc8458

View file

@ -1,4 +1,4 @@
# $Dwarf: article.rb,v 1.95 2005/01/30 14:24:13 ward Exp $
# $Dwarf: article.rb,v 1.96 2005/01/30 18:43:17 ward Exp $
# $Source$
#
@ -793,7 +793,7 @@ def disconnect
for server in @connections.keys
begin
@connections[server]["nntp"].quit
rescue Errno::EPIPE, Errno::ECONNRESET, EOFError
rescue Errno::EPIPE, Errno::ECONNRESET, EOFError, IOError
end
end
end