mirror of
https://github.com/valitydev/salt.git
synced 2024-11-09 01:36:48 +00:00
fixes #31179 by appling the same logic as used in the nexus module
This commit is contained in:
parent
7b7eb740de
commit
eb7fb38a80
@ -387,6 +387,9 @@ def _get_snapshot_version_metadata(artifactory_url, repository, group_id, artifa
|
||||
extension = snapshot_version.find('extension').text
|
||||
value = snapshot_version.find('value').text
|
||||
extension_version_dict[extension] = value
|
||||
if snapshot_version.find('classifier') is not None:
|
||||
classifier = snapshot_version.find('classifier').text
|
||||
extension_version_dict[classifier] = value
|
||||
|
||||
return {
|
||||
'snapshot_versions': extension_version_dict
|
||||
|
Loading…
Reference in New Issue
Block a user