Skip to content

Commit

Permalink
job/job: Create a waiting list of tasks
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Jung <a.jung@lancs.ac.uk>
  • Loading branch information
nderjung committed Dec 20, 2020
1 parent 9e4bb14 commit f9c82b5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions job/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,11 @@ type Run struct {
}

type Job struct {
Params []JobParam `yaml:"params"`
Inputs []Input `yaml:"inputs"`
Outputs []Output `yaml:"outputs"`
Run []Run `yaml:"run"`
Params []JobParam `yaml:"params"`
Inputs []Input `yaml:"inputs"`
Outputs []Output `yaml:"outputs"`
Runs []Run `yaml:"runs"`
waitList *List
}

// NewJob prepares a job yaml file
Expand Down

0 comments on commit f9c82b5

Please sign in to comment.