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
Include machine ID in event record file
In case multiple daemons are running in the same working directory.
record-events
Philipp Oppermann
2 years ago
parent
e29c58d403
commit
3cf33f72a6
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/daemon/src/lib.rs
+ 1
- 1
binaries/daemon/src/lib.rs
View File
@@ -355,7 +355,7 @@ impl Daemon {
record_folder.display()
)
})?;
let record_file_path = record_folder.join("events.txt");
let record_file_path = record_folder.join(
format!(
"events
-{}
.txt"
, self.machine_id)
);
let mut record_file = tokio::fs::OpenOptions::new()
.create(true)
.append(true)
Write
Preview
Loading…
Cancel
Save