wip(#3001): catch the multi-line .insert( chains the grep missed
This commit is contained in:
parent
fe52037b0d
commit
dfb88e2dc2
3 changed files with 6 additions and 6 deletions
|
|
@ -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()
|
||||
})
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue