Remove todos
This commit is contained in:
parent
b0eb94a02a
commit
3cf444ffc2
2 changed files with 1 additions and 3 deletions
|
|
@ -212,7 +212,6 @@ impl ConfigFile {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO Url functions
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct WorkerServerConfig {
|
pub struct WorkerServerConfig {
|
||||||
/// Always ends without a `/`.
|
/// Always ends without a `/`.
|
||||||
|
|
|
||||||
|
|
@ -76,9 +76,8 @@ impl RunInProgress {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn perform(&self, server: &Server) -> Option<FinishedRun> {
|
pub async fn perform(&self, server: &Server) -> Option<FinishedRun> {
|
||||||
// TODO Remove type annotations
|
|
||||||
// TODO Handle aborts
|
// TODO Handle aborts
|
||||||
let result: somehow::Result<_> = match &self.run.bench_method {
|
let result = match &self.run.bench_method {
|
||||||
BenchMethod::Internal => self.perform_internal(server),
|
BenchMethod::Internal => self.perform_internal(server),
|
||||||
BenchMethod::Repo { hash } => todo!(),
|
BenchMethod::Repo { hash } => todo!(),
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue