Project

General

Profile

Actions

Bug #12558

open

[Workbench] Bad dashboard time formatting - 60m == 1h

Added by Tom Morris over 6 years ago. Updated about 2 months ago.

Status:
New
Priority:
Normal
Assigned To:
-
Category:
-
Target version:
Story points:
-
Release:
Release relationship:
Auto

Description

I saw this on the workbench dashboard:

Started at 9:17 AM 11/6/2017. Active for 3h60m.

It should instead be formatted as 4h.

Actions #1

Updated by Tom Morris over 6 years ago

  • Target version changed from 2017-11-22 Sprint to Arvados Future Sprints
Actions #2

Updated by Tom Clegg about 6 years ago

in source:apps/workbench/app/helpers/pipeline_instances_helper.rb we do this after computing days/hours/minutes.

    if round_to_min and seconds >= 30
      minutes += 1
    end

Instead, before computing days/hours/minutes, we could do

    if round_to_min && duration >= 30
      duration += 30
    end

(Without the ≥30 test, adding 30 would cause duration==10 to be reported as "40s" when round_to_min is true.)

Actions #3

Updated by Peter Amstutz almost 3 years ago

  • Target version deleted (Arvados Future Sprints)
Actions #4

Updated by Peter Amstutz about 1 year ago

  • Release set to 60
Actions #5

Updated by Peter Amstutz about 2 months ago

  • Target version set to Future
Actions

Also available in: Atom PDF