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
|
state
|
||||||
.coord
|
.coord
|
||||||
.job_queue
|
.job_queue
|
||||||
.insert(|b| {
|
.insert_job(|b| {
|
||||||
crate::job_queue::templates::meta_update(b, inputs, None);
|
crate::job_queue::templates::meta_update(b, inputs, None);
|
||||||
Vec::new()
|
Vec::new()
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -158,7 +158,7 @@ pub(super) async fn post_tool_groups(
|
||||||
state
|
state
|
||||||
.coord
|
.coord
|
||||||
.job_queue
|
.job_queue
|
||||||
.insert(|b| {
|
.insert_job(|b| {
|
||||||
crate::job_queue::templates::perm_change(
|
crate::job_queue::templates::perm_change(
|
||||||
b,
|
b,
|
||||||
&logical,
|
&logical,
|
||||||
|
|
@ -273,7 +273,7 @@ pub(super) async fn post_capabilities(
|
||||||
state
|
state
|
||||||
.coord
|
.coord
|
||||||
.job_queue
|
.job_queue
|
||||||
.insert(|b| {
|
.insert_job(|b| {
|
||||||
crate::job_queue::templates::perm_change(
|
crate::job_queue::templates::perm_change(
|
||||||
b,
|
b,
|
||||||
&logical,
|
&logical,
|
||||||
|
|
@ -374,7 +374,7 @@ pub(super) async fn post_permissions(
|
||||||
state
|
state
|
||||||
.coord
|
.coord
|
||||||
.job_queue
|
.job_queue
|
||||||
.insert(|b| {
|
.insert_job(|b| {
|
||||||
crate::job_queue::templates::perm_change(
|
crate::job_queue::templates::perm_change(
|
||||||
b,
|
b,
|
||||||
&logical,
|
&logical,
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@ pub(super) async fn post_set_parent(
|
||||||
state
|
state
|
||||||
.coord
|
.coord
|
||||||
.job_queue
|
.job_queue
|
||||||
.insert(|b| {
|
.insert_job(|b| {
|
||||||
crate::job_queue::templates::reparent(b, vec![(child, new_parent)]);
|
crate::job_queue::templates::reparent(b, vec![(child, new_parent)]);
|
||||||
Vec::new()
|
Vec::new()
|
||||||
})
|
})
|
||||||
|
|
@ -155,7 +155,7 @@ pub(super) async fn post_set_parent_bulk(
|
||||||
state
|
state
|
||||||
.coord
|
.coord
|
||||||
.job_queue
|
.job_queue
|
||||||
.insert(|b| {
|
.insert_job(|b| {
|
||||||
crate::job_queue::templates::reparent(b, moves);
|
crate::job_queue::templates::reparent(b, moves);
|
||||||
Vec::new()
|
Vec::new()
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue