Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
ywy2090 committed Nov 19, 2024
1 parent 427d4ef commit 43e84d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/wedpr-computing/ppc-mpc/src/MPCService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ bool MPCService::addJobIfNotRunning(const JobInfo& jobInfo)
MPC_LOG(INFO) << LOG_DESC("[MPCService][addJob]")
<< "job already exists"
<< LOG_KV("jobId", jobInfo.jobId)
<< LOG_KV("code", it->second.code)
<< LOG_KV("status", it->second.status)
<< LOG_KV("message", it->second.message);

if (it->second.status == MPC_JOB_RUNNNING)
Expand Down Expand Up @@ -103,7 +103,7 @@ bool MPCService::queryJobStatus(const std::string &jobId, JobStatus &jobStatus)
MPC_LOG(INFO) << LOG_DESC("[MPCService][queryJobStatus]")
<< "find job"
<< LOG_KV("jobId", jobId)
<< LOG_KV("code", jobStatus.code)
<< LOG_KV("status", jobStatus.status)
<< LOG_KV("message", jobStatus.message)
<< LOG_KV("timeCostMs", jobStatus.timeCostMs);
return true;
Expand Down

0 comments on commit 43e84d3

Please sign in to comment.