StartTime not required for jobs running on node

This commit is contained in:
Christoph Kluge 2023-06-30 15:04:01 +02:00
parent c04aea89c9
commit aacb7489e6

View File

@ -60,11 +60,11 @@
$: filter = [ $: filter = [
{cluster: { eq: cluster }}, {cluster: { eq: cluster }},
{node: { eq: hostname }}, {node: { eq: hostname }},
{state: 'running'}, {state: 'running'}
{startTime: { // {startTime: {
from: from.toISOString(), // from: from.toISOString(),
to: to.toISOString() // to: to.toISOString()
}} // }}
]; ];
const nodeJobsQuery = gql` const nodeJobsQuery = gql`