This is an automated email from the ASF dual-hosted git repository.
morningman 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 e0889ae [typo](load) correct the error of
‘EtlJobMgr::get_job_status’ function (#7353)
e0889ae is described below
commit e0889aee1e90af911e1a70a04266ed6e0ad679fd
Author: SleepyBear <[email protected]>
AuthorDate: Sat Dec 11 16:54:25 2021 +0800
[typo](load) correct the error of ‘EtlJobMgr::get_job_status’ function
(#7353)
---
be/src/runtime/etl_job_mgr.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/runtime/etl_job_mgr.cpp b/be/src/runtime/etl_job_mgr.cpp
index 155141d..95b5539 100644
--- a/be/src/runtime/etl_job_mgr.cpp
+++ b/be/src/runtime/etl_job_mgr.cpp
@@ -248,7 +248,7 @@ Status EtlJobMgr::get_job_state(const TUniqueId& id,
TMiniLoadEtlStatusResult* r
// failed information
if (_failed_jobs.exists(id)) {
EtlJobCtx ctx;
- _success_jobs.get(id, &ctx);
+ _failed_jobs.get(id, &ctx);
result->status.__set_status_code(TStatusCode::OK);
result->__set_etl_state(TEtlState::CANCELLED);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]