Actions
Issue #8541
closedDocumentation on creating a remote is broken
Start date:
Due date:
Estimated time:
Severity:
2. Medium
Version:
Platform Release:
OS:
Triaged:
No
Groomed:
No
Sprint Candidate:
No
Tags:
Documentation
Sprint:
Quarter:
Description
https://pulp-rpm.readthedocs.io/en/latest/workflows/create_sync_publish.html#create-a-new-remote-bar
The inclusion of the --form parameter causes this to fail on my machine, unfortunately. I get the error:
{
"pulp_labels": [
"Data must be supplied as a key/value hash."
]
}
Updated by daviddavis over 3 years ago
- Status changed from NEW to ASSIGNED
- Assignee set to daviddavis
Updated by pulpbot over 3 years ago
- Status changed from ASSIGNED to POST
Added by daviddavis over 3 years ago
Updated by daviddavis over 3 years ago
- Status changed from POST to MODIFIED
Applied in changeset pulpcore|7277784355df7e9dfad45a1f8de9be1764e7183c.
Updated by pulpbot over 3 years ago
- Status changed from MODIFIED to CLOSED - CURRENTRELEASE
Actions
Fix pulp_labels type check
When submitting form data, pulp_labels is a MultiValueDict which is a type of dict. isinstance() will recognize if data is a subclass of dict.
fixes #8541