Merge pull request #12521 from ctiller/rtstat

Make unmeasured CPU costs be 1, not 0
pull/12533/head
Craig Tiller 8 years ago committed by GitHub
commit f6da962134
  1. 2
      tools/run_tests/python_utils/jobset.py

@ -224,7 +224,7 @@ class JobResult(object):
self.retries = 0
self.message = ''
self.cpu_estimated = 1
self.cpu_measured = 0
self.cpu_measured = 1
def read_from_start(f):

Loading…
Cancel
Save