From 138800914aa38f25db2788a94a0327c692e29557 Mon Sep 17 00:00:00 2001 From: iximeow Date: Tue, 4 Jul 2023 15:48:47 -0700 Subject: set a limit for how far back we'll construct new runs of existing jobs for new hosts --- src/sql.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sql.rs') diff --git a/src/sql.rs b/src/sql.rs index e98c111..1071279 100644 --- a/src/sql.rs +++ b/src/sql.rs @@ -144,9 +144,9 @@ pub const PENDING_RUNS: &'static str = "\ pub const JOBS_NEEDING_HOST_RUN: &'static str = "\ select jobs.id, jobs.source, jobs.created_time, jobs.remote_id, jobs.commit_id, jobs.run_preferences from jobs \ - where jobs.run_preferences=\"all\" \ + where jobs.run_preferences=\"all\" and jobs.created_time > ?1 \ and not exists \ - (select 1 from runs r2 where r2.job_id = jobs.id and r2.host_id = ?1);"; + (select 1 from runs r2 where r2.job_id = jobs.id and r2.host_id = ?2);"; pub const ACTIVE_RUNS: &'static str = "\ select id, -- cgit v1.1