We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62e2704 commit 01ba579Copy full SHA for 01ba579
site/src/job_queue.rs
@@ -265,9 +265,12 @@ async fn enqueue_next_job(conn: &mut dyn database::pool::Connection) -> anyhow::
265
266
if let Some(request) = queue.into_iter().next() {
267
if request.status != BenchmarkRequestStatus::InProgress {
268
- // TODO: actually enqueue the jobs
269
- conn.update_benchmark_request_status(&request, BenchmarkRequestStatus::InProgress)
270
- .await?;
+ log::info!("{:?} would have been marked as InProgress", request);
+ // TODO:
+ // - Uncomment this code
271
+ // - Actually enqueue the jobs
272
+ // conn.update_benchmark_request_status(&request, BenchmarkRequestStatus::InProgress)
273
+ // .await?;
274
}
275
276
0 commit comments