Exception: Redis::ProtocolError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/redis.rb

Instance Method Summary collapse

Constructor Details

#initialize(reply_type) ⇒ ProtocolError

Returns a new instance of ProtocolError.



5
6
7
8
9
10
11
12
13
# File 'lib/redis.rb', line 5

def initialize(reply_type)
  super("  Got '\#{reply_type}' as initial reply byte.\n  If you're running in a multi-threaded environment, make sure you\n  pass the :thread_safe option when initializing the connection.\n  If you're in a forking environment, such as Unicorn, you need to\n  connect to Redis after forking.\n  EOS\nend\n".gsub(/(?:^|\n)\s*/, " "))