-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jobs: Add a column for end time/duration #814
Conversation
And add unit tests for this function
Is an endtime or a duration kind of confusing to have both at the same place no? |
The docker build list for exmple only has a start time and a duration. |
And that might be a problem too if the task has spent time in a pending state... this PR gives a duration from last updated_at to created_at, but we don't have a started_at field... |
But adding a started_at is a bit more involving than this quick one... |
So the current displayed duration might be a lie? |
#815 needs to be fixed first so we can calculate the actual duration of the job execution and not just it's life |
Actually, I can just put the end time in this PR for now, without fixing either #813 or #815. it gives an information to the user, without lying about anything. Would that be all right? @greenscientist ? |
Yes, that would work well for the moment and give a good enough insight to the user |
If the job is completed or has failed, the column displays the end time of the task.
Only the end time is present now |
No description provided.