Nace Plesko
09/29/2022, 5:51 PMBianca Hoch
09/29/2022, 7:27 PM{
task_run(
where: {
created: {_lt: "2022-09-29 00:00:00", _gte: "2022-09-01 00:00:00"},
state: {_eq: "Running"},
}
) {
id
name
flow_run_id
task {
name
id
}
}
}
mutation setTaskRunStates($input: [set_task_run_state_input!]!) {
set_task_run_states(input: {states: $input}) {
states {
id
status
message
__typename
}
__typename
}
}
{
"input": {
"task_run_id": "task_runid",
"version": 1,
"state": {
"type": "Cancelled",
"message": "marked task run as Cancelled because \"test\""
}
}
}
Nace Plesko
09/29/2022, 9:19 PMBianca Hoch
09/30/2022, 2:52 PMNace Plesko
09/30/2022, 3:05 PMBianca Hoch
09/30/2022, 3:06 PMNace Plesko
09/30/2022, 3:13 PMBianca Hoch
09/30/2022, 4:41 PMNace Plesko
09/30/2022, 4:42 PMdb_shell_task
on the screenshot is ShellTask
Does anything on the screenshot below look obviously wrong? Again, I apologize for my lack of knowledge of PrefectShellTask
doesn't seem to do anything. ShellTask doesn't seem to have Duration and the mapped child runs are also not affected by that timeout setting.
Is there a way to set timeout on mapped children from ShellTask
?