mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-02-12 23:17:03 +00:00
Fix caching of the latest run for the autopkgtest policy
This commit is contained in:
parent
641d46f8d2
commit
10eed22925
@ -876,7 +876,11 @@ class AutopkgtestPolicy(BasePolicy):
|
||||
continue
|
||||
if run_id > latest_run_id:
|
||||
latest_run_id = run_id
|
||||
self.latest_run_for_package._cache[arch] = latest_run_id
|
||||
try:
|
||||
self.latest_run_for_package._cache[src][arch] = latest_run_id
|
||||
except KeyError:
|
||||
self.latest_run_for_package._cache[src] = {arch: latest_run_id}
|
||||
|
||||
return latest_run_id
|
||||
|
||||
latest_run_for_package._cache = collections.defaultdict(dict)
|
||||
|
Loading…
x
Reference in New Issue
Block a user