Skip to content

Commit

Permalink
drop unused packager field from distro metadata
Browse files Browse the repository at this point in the history
The actor was refactored to accept any `gpg-key` package, regardless of
the value in the packager field, but the data was never drop from the
JSON files.

Fixes: 4968bec
  • Loading branch information
evgeni authored and pirat89 committed May 21, 2024
1 parent 8c22562 commit a789309
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ def get_distribution_data(distribution):
with open(distribution_config) as distro_config_file:
distro_config_json = json.load(distro_config_file)
distro_keys = distro_config_json.get('keys', [])
# distro_packager = distro_config_json.get('packager', 'not-available')
else:
raise StopActorExecutionError(
'Cannot find distribution signature configuration.',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
"24c6a8a7f4a80eb5",
"05b555b38483c65d",
"4eb84e71f2ee9d55"
],
"packager": "CentOS"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
"938a80caf21541eb",
"fd372689897da07a",
"45689c882fa658e0"
],
"packager": "Red Hat, Inc."
]
}

0 comments on commit a789309

Please sign in to comment.