Skip to content

Commit 018b58f

Browse files
committed
Fix flatpak cache serialization
1 parent 0986ab0 commit 018b58f

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixed a serialization issue with the FlatpakIndex cache.

pulp_container/app/registry_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ def get(self, request):
708708
continue
709709
images.append(
710710
{
711-
"Tags": tagged,
711+
"Tags": list(tagged),
712712
"Digest": manifest.digest,
713713
"MediaType": manifest.media_type,
714714
"OS": os,

pulp_container/tests/functional/api/test_flatpak.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55

66
from pulp_container.tests.functional.constants import REGISTRY_V2
77

8-
pytestmark = pytest.mark.skip(reason="TLS is broken currently. TODO: Fix")
9-
108

119
def run_flatpak_commands(host):
1210
# Install flatpak:

0 commit comments

Comments
 (0)