Actions
Bug #23233
closedsatellite-installer --katello-pulp-max-speed leads to broken pulp
Difficulty:
trivial
Triaged:
Bugzilla link:
Pull request:
Description
Cloned from BZ:
Description of problem:using
- satellite-installer --katello-pulp-max-speed 10MB
leaves pulp broken
Version-Release number of selected component (if applicable):
satellite-6.3.0.1-1.el7sat.noarch
How reproducible:
Steps to Reproduce:1. install satellite 6.3 as per documentation
2. try to add speed limitation: # satellite-installer --katello-pulp-max-speed 10MB
3. afterwards pulp is not working anymore:
- hammer ping
candlepin:
Status: ok
Server Response: Duration: 17ms
candlepin_auth:
Status: ok
Server Response: Duration: 21ms
pulp:
Status: FAIL
Server Response:
pulp_auth:
Status: FAIL
foreman_tasks:
Status: ok
Server Response: Duration: 490ms
#
Actual results:
pulp broken because of wrongly set value in /etc/pulp/server/plugins.conf.d/yum_importer.json
- cat /etc/pulp/server/plugins.conf.d/yum_importer.json
{
"proxy_host": null,
"proxy_port": null,
"proxy_username": null,
"proxy_password": null,
"max_speed": 10485760"
} #
--> there are " missing in front of the value
Expected results:
should add value in a way that it is supported
Additional info:
changing "max_speed": 10485760"
to "max_speed": "10485760"
and restarting satellite makes it work again
Updated by The Foreman Bot over 6 years ago
- Status changed from New to Ready For Testing
- Pull request https://github.com/theforeman/puppet-pulp/pull/315 added
Updated by Justin Sherrill over 6 years ago
- Translation missing: en.field_release set to 338
Updated by Chris Roberts over 6 years ago
- Status changed from Ready For Testing to Closed
- % Done changed from 0 to 100
Applied in changeset puppet-pulp|045dedfd3be324b2f3b156c7e5aca0c771f19285.
Actions