class RedisClient::Cluster::OrchestrationCommandNotSupported

def initialize(command)

def initialize(command)
  str = ERR_ARG_NORMALIZATION.call(command).map(&:to_s).join(' ').upcase
  msg = "#{str} command should be used with care " \
        'only by applications orchestrating Redis Cluster, like redis-cli, ' \
        'and the command if used out of the right context can leave the cluster ' \
        'in a wrong state or cause data loss.'
  super(msg)
end