This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
dora-rs
/
dora
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
124
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Report error context from coordinator to CLI
tags/v0.3.10-rc3
Philipp Oppermann
11 months ago
parent
8b3be226e5
commit
5f4902d15d
Failed to extract signature
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
binaries/coordinator/src/control.rs
+ 1
- 1
binaries/coordinator/src/control.rs
View File
@@ -119,7 +119,7 @@ async fn handle_requests(
Err(err) => Err(err),
};
let reply = result.unwrap_or_else(|err| ControlRequestReply::Error(format!("{err}")));
let reply = result.unwrap_or_else(|err| ControlRequestReply::Error(format!("{err
:?
}")));
let serialized: Vec<u8> =
match serde_json::to_vec(&reply).wrap_err("failed to serialize ControlRequestReply") {
Ok(s) => s,
Write
Preview
Loading…
Cancel
Save