This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch dev-1.1.2
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/dev-1.1.2 by this push:
new 139faeb6e4 [Bug] fix cancel fragment bug (#11683)
139faeb6e4 is described below
commit 139faeb6e44c373d60f1424c5e2d5d48e002bd53
Author: ChPi <[email protected]>
AuthorDate: Thu Aug 11 16:48:18 2022 +0800
[Bug] fix cancel fragment bug (#11683)
Co-authored-by: chenjie <[email protected]>
---
fe/fe-core/src/main/java/org/apache/doris/qe/Coordinator.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/Coordinator.java
b/fe/fe-core/src/main/java/org/apache/doris/qe/Coordinator.java
index 61eb8ecf00..cd8d07828c 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/qe/Coordinator.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/qe/Coordinator.java
@@ -2135,6 +2135,7 @@ public class Coordinator {
try {
TExecPlanFragmentParamsList paramsList = new
TExecPlanFragmentParamsList();
for (BackendExecState state : states) {
+ state.initiated = true;
paramsList.addToParamsList(state.rpcParams);
}
return BackendServiceProxy.getInstance()
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]