diff --git a/src/redis-shake/common/configure.go b/src/redis-shake/common/configure.go index 5a0b597..bbf6cfe 100644 --- a/src/redis-shake/common/configure.go +++ b/src/redis-shake/common/configure.go @@ -96,9 +96,9 @@ func parseAddress(tp, address, redisType string, isSource bool) error { } } case conf.RedisTypeCluster: - if isSource == false && tp == conf.TypeRump { - return fmt.Errorf("target type[%v] can't be cluster when type is 'rump' currently", redisType) - } + //if isSource == false && tp == conf.TypeRump { + // return fmt.Errorf("target type[%v] can't be cluster when type is 'rump' currently", redisType) + //} if strings.Contains(address, AddressSplitter) { arr := strings.Split(address, AddressSplitter) if len(arr) != 2 {