Actions
Issue #5341
closedinstaller translates pulp settings values for 'False' as 'false'
Status:
CLOSED - CURRENTRELEASE
Priority:
Normal
Assignee:
Category:
Installer - Moved to GitHub issues
Sprint/Milestone:
Start date:
Due date:
Estimated time:
Severity:
2. Medium
Version:
Platform Release:
OS:
Triaged:
Yes
Groomed:
No
Sprint Candidate:
No
Tags:
Katello
Sprint:
Sprint 60
Quarter:
Description
The migration tooling has you set various values for installation:
https://github.com/pulp/pulp-2to3-migrate
For example:
PULP2_MONGODB:
name: "pulp_database"
seeds: "localhost:27017"
ssl: False
However when this gets generated to the settings file, it renders it as 'false':
PULP2_MONGODB = {"name": "pulp_database", "seeds": "localhost:27017", "ssl": false}
which python does not understand at all.
Actions
Capitalize boolean settings in settings.py
fixes: #5341 https://pulp.plan.io/issues/5341