Fix bug that UpdateTabletMetaInfoTask not returned (#2119)

This commit is contained in:
Mingyu Chen
2019-11-05 09:23:41 +08:00
committed by ZHAO Chun
parent d83eec7a14
commit d2e34310ef
2 changed files with 1 additions and 1 deletions

View File

@ -882,7 +882,6 @@ public class ReportHandler extends Daemon {
private static void handleSetTabletMetaInfo(long backendId, SetMultimap<Long, Integer> tabletWithoutPartitionId) {
LOG.info("find [{}] tablets without partition id, try to set them", tabletWithoutPartitionId.size());
if (tabletWithoutPartitionId.size() < 1) {
return;

View File

@ -359,6 +359,7 @@ public class AgentBatchTask implements Runnable {
LOG.debug(request.toString());
}
tAgentTaskRequest.setUpdate_tablet_meta_info_req(request);
return tAgentTaskRequest;
}
case ALTER: {
AlterReplicaTask createRollupTask = (AlterReplicaTask) task;