From 92e9a08b6940e7c5bc417116cdeba8ee89de0e76 Mon Sep 17 00:00:00 2001 From: Alex Xing <90179377+SuperYoko@users.noreply.github.com> Date: Fri, 21 Oct 2022 11:13:21 +0800 Subject: [PATCH] fix storage job (#4762) Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com> --- src/meta/processors/job/StorageJobExecutor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meta/processors/job/StorageJobExecutor.h b/src/meta/processors/job/StorageJobExecutor.h index 521f314216f..0d6f025993d 100644 --- a/src/meta/processors/job/StorageJobExecutor.h +++ b/src/meta/processors/job/StorageJobExecutor.h @@ -84,7 +84,7 @@ class StorageJobExecutor : public JobExecutor { } JobDescription getJobDescription() override { - JobDescription ret; + JobDescription ret{space_, jobId_, cpp2::JobType::UNKNOWN}; return ret; }