Skip to content

Commit

Permalink
Merge Pull Request #1241
Browse files Browse the repository at this point in the history
branch 'lklinginsmith/update_cluster_client_error_mapping'

Fix: #1241
  • Loading branch information
byroot committed Nov 29, 2023
2 parents 58e43cf + ee9edac commit c6fa9f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions cluster/lib/redis/cluster.rb
Expand Up @@ -41,6 +41,9 @@ class AmbiguousNodeError < BaseError
class TransactionConsistencyError < BaseError
end

class NodeMightBeDown < BaseError
end

def connection
raise NotImplementedError, "Redis::Cluster doesn't implement #connection"
end
Expand Down
3 changes: 2 additions & 1 deletion cluster/lib/redis/cluster/client.rb
Expand Up @@ -10,7 +10,8 @@ class Client < RedisClient::Cluster
RedisClient::Cluster::OrchestrationCommandNotSupported => Redis::Cluster::OrchestrationCommandNotSupported,
RedisClient::Cluster::AmbiguousNodeError => Redis::Cluster::AmbiguousNodeError,
RedisClient::Cluster::ErrorCollection => Redis::Cluster::CommandErrorCollection,
RedisClient::Cluster::Transaction::ConsistencyError => Redis::Cluster::TransactionConsistencyError
RedisClient::Cluster::Transaction::ConsistencyError => Redis::Cluster::TransactionConsistencyError,
RedisClient::Cluster::NodeMightBeDown => Redis::Cluster::NodeMightBeDown,
).freeze

class << self
Expand Down

0 comments on commit c6fa9f4

Please sign in to comment.