Open git-hulk opened 9 years ago
https://github.com/alibaba/tfs/blob/master/src/nameserver/task.cpp#L67
return type_ == PLAN_TYPE_MOVE || type_ == PLAN_TYPE_REPLICATE || PLAN_TYPE_COMPACT;
这个是否为手误? 是不是应该为:
return type_ == PLAN_TYPE_MOVE || type_ == PLAN_TYPE_REPLICATE || type_ == PLAN_TYPE_COMPACT;
还是特意让代码一直返回true
https://github.com/alibaba/tfs/blob/master/src/nameserver/task.cpp#L67
这个是否为手误? 是不是应该为:
还是特意让代码一直返回true