# File lib/redis/connection/ruby.rb, line 90
        def self.connect(path, timeout)
          Timeout.timeout(timeout) do
            sock = new(path)
            sock
          end
        rescue Timeout::Error
          raise TimeoutError
        end