Actions
Bug #29371
closed[puppet_pulpcore] Update pulp/settings.py to support pulpcore3.2 changes
Description
There are some changes needed to template/settings.py to support pulpcore 3.2
We need the below to support 3.2:
AUTHENTICATION_BACKENDS = ['pulpcore.app.authentication.PulpNoCreateRemoteUserBackend']
REST_FRAMEWORK__DEFAULT_AUTHENTICATION_CLASSES = (
'rest_framework.authentication.SessionAuthentication',
'pulpcore.app.authentication.PulpRemoteUserAuthentication'
)
ALLOWED_IMPORT_PATHS = ['/var/www/test_repos']
Actions