Actions
Issue #3115
closedOne sample request in API doc for regenerate_applicability is wrong
Start date:
Due date:
Estimated time:
Severity:
1. Low
Version:
Platform Release:
2.14.3
OS:
Triaged:
Yes
Groomed:
No
Sprint Candidate:
No
Tags:
Documentation, Easy Fix, Pulp 2
Sprint:
Sprint 28
Quarter:
Description
In https://docs.pulpproject.org/dev-guide/integration/rest-api/consumer/applicability.html , section "Generate Content Applicability for Updated Repositories", there is Sample request:
{
"repo_criteria": {
"filters": {"id": {"$in": ["test-repo", "test-errata"]}},
"parallel": true
}
}
However "parallel" is not a part of "repo_criteria" but a parameter on the same level. That Sample request should be:
{
"repo_criteria": {
"filters": {"id": {"$in": ["test-repo", "test-errata"]}},
},
"parallel": true
}
Updated by daviddavis about 7 years ago
- Status changed from NEW to POST
- Assignee set to daviddavis
Updated by dalley about 7 years ago
- Priority changed from Normal to Low
- Sprint/Milestone set to 47
Added by daviddavis about 7 years ago
Updated by daviddavis about 7 years ago
- Status changed from POST to MODIFIED
Applied in changeset pulp:pulp|2856f669abb196ca8a58d93d6d192b57460765e9.
Updated by daviddavis over 5 years ago
- Status changed from 5 to CLOSED - CURRENTRELEASE
Actions
Fix repo applicability json example
fixes #3115