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."
]
}
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