Skip to content

Commit

Permalink
Move run_id, batch_id, run_name, timestamp out of stats object
Browse files Browse the repository at this point in the history
  • Loading branch information
dianaclarke committed Jul 14, 2021
1 parent c55e2b4 commit acc7cd1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions conbench/app/benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,7 @@ def _get_benchmark_and_run(self, benchmark_id):
benchmark = self.get_display_benchmark(benchmark_id)
run = None
if benchmark is not None:
run_id = benchmark["run_id"]
run = self.get_display_run(run_id)
run = self.get_display_run(benchmark["run_id"])
return benchmark, run


Expand Down

0 comments on commit acc7cd1

Please sign in to comment.