Skip to content

Commit

Permalink
Merge pull request #1673 from kamoltat/wip-ksirivad-fix-dic-update
Browse files Browse the repository at this point in the history
Fix dictionary update in try_push_job_info()
  • Loading branch information
zmc authored Sep 24, 2021
2 parents d3a488f + 11ef3dd commit f08b273
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 f08b273

Please sign in to comment.