Exception: Redis::ProtocolError
- Defined in:
- lib/redis/errors.rb
Overview
Raised by the connection when a protocol error occurs.
Instance Method Summary collapse
-
#initialize(reply_type) ⇒ ProtocolError
constructor
A new instance of ProtocolError.
Constructor Details
#initialize(reply_type) ⇒ ProtocolError
Returns a new instance of ProtocolError.
8 9 10 11 12 13 14 |
# File 'lib/redis/errors.rb', line 8 def initialize(reply_type) super(<<-EOS.gsub(/(?:^|\n)\s*/, " ")) Got '#{reply_type}' as initial reply byte. If you're in a forking environment, such as Unicorn, you need to connect to Redis after forking. EOS end |