quote from the description of the tracker ticket:
> This is a duration and therefore "since" doesn't make sense since it's
> not the start of the event.
Fixes: https://tracker.ceph.com/issues/40976
Signed-off-by: Kefu Chai <kchai@redhat.com>
# Update duration of event in seconds/minutes/hours
duration = time.time() - self.started_at
- self._duration_str = time.strftime("(since %Hh %Mm %Ss)", time.gmtime(duration))
+ self._duration_str = time.strftime("(%Hh %Mm %Ss)", time.gmtime(duration))
def estimated_time_remaining(self):