wip(#3001): catch the multi-line .insert( chains the grep missed

This commit is contained in:
atlas 2026-08-04 17:44:24 +02:00 committed by mara
commit dfb88e2dc2
3 changed files with 6 additions and 6 deletions

View file

@ -214,7 +214,7 @@ pub(super) async fn post_meta_update(
state
.coord
.job_queue
.insert(|b| {
.insert_job(|b| {
crate::job_queue::templates::meta_update(b, inputs, None);
Vec::new()
})

View file

@ -158,7 +158,7 @@ pub(super) async fn post_tool_groups(
state
.coord
.job_queue
.insert(|b| {
.insert_job(|b| {
crate::job_queue::templates::perm_change(
b,
&logical,
@ -273,7 +273,7 @@ pub(super) async fn post_capabilities(
state
.coord
.job_queue
.insert(|b| {
.insert_job(|b| {
crate::job_queue::templates::perm_change(
b,
&logical,
@ -374,7 +374,7 @@ pub(super) async fn post_permissions(
state
.coord
.job_queue
.insert(|b| {
.insert_job(|b| {
crate::job_queue::templates::perm_change(
b,
&logical,

View file

@ -96,7 +96,7 @@ pub(super) async fn post_set_parent(
state
.coord
.job_queue
.insert(|b| {
.insert_job(|b| {
crate::job_queue::templates::reparent(b, vec![(child, new_parent)]);
Vec::new()
})
@ -155,7 +155,7 @@ pub(super) async fn post_set_parent_bulk(
state
.coord
.job_queue
.insert(|b| {
.insert_job(|b| {
crate::job_queue::templates::reparent(b, moves);
Vec::new()
})