Actions
Feature #36902
closedSupport Pulpcore 3.39 installations
Status:
Closed
Priority:
Normal
Assignee:
Category:
Foreman modules
Target version:
Difficulty:
Triaged:
No
Description
The service file needs to change to work with Pulpcore 3.39. There is a new executable. Here is what I changed on my dev machine to make things work:
NOTE: pulpcore-api no longer accepts --max-requests-jitter.
pulpcore-api.service ... #ExecStart=/usr/libexec/pulpcore/gunicorn pulpcore.app.wsgi:application \ # --timeout 90 \ # -w 5 \ # --access-logfile - \ # --access-logformat 'pulp [%({correlation-id}o)s]: %(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s" "%(a)s"' ExecStart=/usr/local/bin/pulpcore-api --preload --timeout 90 --workers 5 --max-requests 800 --access-logfile - --access-logformat 'pulp [%({correlation-id}o)s]: %(h)s %(l)s %(u)s %(t)s "%(r)s" %(s)s %(b)s "%(f)s" "%(a)s"' ... pulpcore-content.service ... #ExecStart=/usr/libexec/pulpcore/gunicorn pulpcore.content:server \ # --timeout 90 \ # --worker-class 'aiohttp.GunicornWebWorker' \ # -w 9 \ # --access-logfile - ExecStart=/usr/local/bin/pulpcore-content --preload --timeout 90 --workers 5 --access-logfile - ...
Updated by Evgeni Golov about 1 year ago
NOTE: pulpcore-api no longer accepts --max-requests-jitter.
this seems like a bug to me
Updated by Ian Ballou about 1 year ago
I agree, the fact that it's missing is a bug. However it sounds like it isn't strictly necessary, so perhaps not a blocker?
Updated by Ian Ballou about 1 year ago
Pulpcore issue for the jitter: https://github.com/pulp/pulpcore/issues/4679
Updated by The Foreman Bot about 1 year ago
- Status changed from New to Ready For Testing
- Assignee set to Ian Ballou
- Pull request https://github.com/theforeman/puppet-pulpcore/pull/315 added
Updated by Ian Ballou about 1 year ago
- Status changed from Ready For Testing to Closed
Applied in changeset puppet-pulpcore|7e12c0f4c5e7552d1aa7350c960b5c46d0130bbf.
Actions