initial implementatin of new job queue with skip info per job

This commit is contained in:
Oliver Gorwits
2018-04-25 21:43:39 +01:00
parent 5eb443438c
commit 7e1982985c
9 changed files with 187 additions and 26 deletions

View File

@@ -161,4 +161,12 @@ between the date stamp and time stamp. That is:
sub finished_stamp { return (shift)->get_column('finished_stamp') }
=head2 duration
Formatted version of the C<duration> field, accurate to the minute.
=cut
sub duration { return (shift)->get_column('duration') }
1;