diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-10 16:09:08 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-10 16:09:08 +0100 |
commit | f1608b8098d0302f7e5c0e7989c78fa310d7d424 (patch) | |
tree | f4e1a9a9a5f6c0873bc568c96a21fbade7170104 /lib/mauve/authentication.rb | |
parent | a54a32084e9870af6f1ede97887c2332c21e812c (diff) |
Removed MauveTime. Added more tests.
Diffstat (limited to 'lib/mauve/authentication.rb')
-rw-r--r-- | lib/mauve/authentication.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mauve/authentication.rb b/lib/mauve/authentication.rb index f01fb5e..74c6780 100644 --- a/lib/mauve/authentication.rb +++ b/lib/mauve/authentication.rb @@ -77,12 +77,12 @@ module Mauve ## Not really needed. def ping () begin - MauveTimeout.timeout(@timeout) do + Timeout.timeout(@timeout) do s = TCPSocket.open(@srv, @port) s.close() return true end - rescue MauveTimeout::Error => ex + rescue Timeout::Error => ex return false rescue => ex return false |