You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by zh...@apache.org on 2019/11/05 01:23:52 UTC

[incubator-doris] branch master updated: Fix bug that UpdateTabletMetaInfoTask not returned (#2119)

This is an automated email from the ASF dual-hosted git repository.

zhaoc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new d2e3431  Fix bug that UpdateTabletMetaInfoTask not returned (#2119)
d2e3431 is described below

commit d2e34310efcfc75fdf3161d807cdabade23871db
Author: Mingyu Chen <mo...@163.com>
AuthorDate: Tue Nov 5 09:23:41 2019 +0800

    Fix bug that UpdateTabletMetaInfoTask not returned (#2119)
---
 fe/src/main/java/org/apache/doris/master/ReportHandler.java | 1 -
 fe/src/main/java/org/apache/doris/task/AgentBatchTask.java  | 1 +
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/src/main/java/org/apache/doris/master/ReportHandler.java b/fe/src/main/java/org/apache/doris/master/ReportHandler.java
index 8312382..2a40961 100644
--- a/fe/src/main/java/org/apache/doris/master/ReportHandler.java
+++ b/fe/src/main/java/org/apache/doris/master/ReportHandler.java
@@ -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;
diff --git a/fe/src/main/java/org/apache/doris/task/AgentBatchTask.java b/fe/src/main/java/org/apache/doris/task/AgentBatchTask.java
index ea5077b..2beed65 100644
--- a/fe/src/main/java/org/apache/doris/task/AgentBatchTask.java
+++ b/fe/src/main/java/org/apache/doris/task/AgentBatchTask.java
@@ -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;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org