Skip to content

Commit

Permalink
fix script_path_start
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Aug 28, 2023
1 parent 1db214f commit 2459041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/windmill-api/src/jobs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2472,7 +2472,7 @@ fn list_completed_jobs_query(
}

if let Some(ps) = &lq.script_path_start {
sqlb.and_where_like_left("script_path", "?".bind(ps));
sqlb.and_where_like_left("script_path", ps);
}
if let Some(p) = &lq.script_path_exact {
sqlb.and_where_eq("script_path", "?".bind(p));
Expand Down

0 comments on commit 2459041

Please sign in to comment.