We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 696ff0b commit 3759fc9Copy full SHA for 3759fc9
lib/redis_client/ruby_connection.rb
@@ -74,7 +74,7 @@ def write(command)
74
buffer = RESP3.dump(command)
75
begin
76
@io.write(buffer)
77
- rescue SystemCallError, IOError => error
+ rescue SystemCallError, IOError, OpenSSL::SSL::SSLError => error
78
raise ConnectionError.with_config(error.message, config)
79
end
80
@@ -86,7 +86,7 @@ def write_multi(commands)
86
87
88
89
90
91
92
0 commit comments