You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
This issue observed during Satellite upgrade for very specific version 6.5.0->6.5.z, In which one of the functions of tasks.py i.e sync_capsule_subscription_to_capsule_ak returned list index out of error. This issue comes due to one of the extra parameter passed in the collection(data) parameter in enable property of cap_reposet.
The passed parameter:
cap_reposet.enable(
data={'basearch': 'x86_64', 'releasever': '7Server', 'organization_id': org.id})
Required Paramater:
cap_reposet.enable(
data={'basearch': 'x86_64', 'organization_id': org.id})
The text was updated successfully, but these errors were encountered:
This issue observed during Satellite upgrade for very specific version 6.5.0->6.5.z, In which one of the functions of tasks.py i.e sync_capsule_subscription_to_capsule_ak returned list index out of error. This issue comes due to one of the extra parameter passed in the collection(data) parameter in enable property of cap_reposet.
The passed parameter:
cap_reposet.enable(
data={'basearch': 'x86_64', 'releasever': '7Server', 'organization_id': org.id})
Required Paramater:
cap_reposet.enable(
data={'basearch': 'x86_64', 'organization_id': org.id})
The text was updated successfully, but these errors were encountered: