Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/2445.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Marked distribution update and delete operations as non-immediate due to heavy index rebuild hooks.
2 changes: 2 additions & 0 deletions pulp_ansible/app/viewsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -1124,6 +1124,8 @@ class AnsibleDistributionViewSet(DistributionViewSet, RolesMixin):
endpoint_name = "ansible"
queryset = AnsibleDistribution.objects.all()
serializer_class = AnsibleDistributionSerializer
ALLOW_NON_BLOCKING_UPDATE = False
ALLOW_NON_BLOCKING_DELETE = False

queryset_filtering_required_permission = "ansible.view_ansibledistribution"

Expand Down
Loading