From 1589853ea765f5512ea776a74535d6022812e289 Mon Sep 17 00:00:00 2001 From: iximeow Date: Thu, 29 Jun 2023 02:25:11 -0700 Subject: started->active, include pending --- 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 96d2ef8..91edafb 100644 --- a/src/sql.rs +++ b/src/sql.rs @@ -97,8 +97,8 @@ pub const CREATE_REPO_NAME_INDEX: &'static str = "\ pub const PENDING_JOBS: &'static str = "\ select id, artifacts_path, state, run_host, remote_id, commit_id, created_time, source from jobs where state=0;"; -pub const STARTED_JOBS: &'static str = "\ - select * from jobs where state=1;"; +pub const ACTIVE_JOBS: &'static str = "\ + select * from jobs where state=1 or state=0;"; pub const LAST_ARTIFACTS_FOR_JOB: &'static str = "\ select * from artifacts where job_id=?1 and (name like \"%(stderr)%\" or name like \"%(stdout)%\") order by id desc limit ?2;"; -- cgit v1.1