File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ use tokio::time::{self, Duration};
99
1010/// Store the latest master commits or do nothing if all of them are
1111/// already in the database
12- async fn enqueue_master_commits (
12+ async fn create_benchmark_request_master_commits (
1313 ctxt : & Arc < SiteCtxt > ,
1414 conn : & dyn database:: pool:: Connection ,
1515) -> anyhow:: Result < ( ) > {
@@ -136,7 +136,7 @@ async fn enqueue_next_job(conn: &mut dyn database::pool::Connection) -> anyhow::
136136async fn cron_enqueue_jobs ( site_ctxt : & Arc < SiteCtxt > ) -> anyhow:: Result < ( ) > {
137137 let mut conn = site_ctxt. conn ( ) . await ;
138138 // Put the master commits into the `benchmark_requests` queue
139- enqueue_master_commits ( site_ctxt, & * conn) . await ?;
139+ create_benchmark_request_master_commits ( site_ctxt, & * conn) . await ?;
140140 enqueue_next_job ( & mut * conn) . await ?;
141141 Ok ( ( ) )
142142}
You can’t perform that action at this time.
0 commit comments