Skip to content
Snippets Groups Projects
Commit 4deee888 authored by Dylan Aïssi's avatar Dylan Aïssi
Browse files

Fix malformed cache data when reusing cache


The delta entry required the branch as first level to store data.

Signed-off-by: default avatarDylan Aïssi <dylan.aissi@collabora.com>
parent 44630086
No related branches found
No related tags found
1 merge request!215Fix malformed cache data when reusing cache
Pipeline #733927 passed
......@@ -243,7 +243,7 @@ def compute_delta(data, cache=None):
branch=branch,
)
pkg_delta = {branch: delta_cached}
add_delta_entry(package.name, delta_cached)
add_delta_entry(package.name, pkg_delta)
continue
else:
logging.debug(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment