Skip to content

Commit

Permalink
Fix dictionary update in try_push_job_info()
Browse files Browse the repository at this point in the history
the function `try_push_job_info()` is not
updating `job_info` dictionary properly since
we want to update `job_info` with `extra_info`,
however, in lines 498 and 499 we are assigning
`job_info` to a copy of `extra_info` and updating
`job_info` with `job_config` which is incorrect.
Instead, we should assign `job_info` with
a copy of `job_config` and update `job_info` with
`extra_info`
  • Loading branch information
kamoltat committed Sep 13, 2021
1 parent b135a4f commit 6613646
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions teuthology/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,8 +495,8 @@ def try_push_job_info(job_config, extra_info=None):
job_id = job_config['job_id']

if extra_info is not None:
job_info = extra_info.copy()
job_info.update(job_config)
job_info = job_config.copy()
job_info.update(extra_info)
else:
job_info = job_config

Expand Down

0 comments on commit 6613646

Please sign in to comment.