mirror of
https://github.com/ansible/awx.git
synced 2026-05-21 15:57:52 -02:30
fix a bug in the Centrify Vault plugin
This commit is contained in:
@@ -123,7 +123,7 @@ def centrify_backend(**kwargs):
|
||||
endpoint = {
|
||||
'endpoint': endpoint,
|
||||
'client_id': client_id,
|
||||
'client_password': client_password
|
||||
'client_password': client_password,
|
||||
'oauth_scope': kwargs.get('oauth_scope', 'awx')
|
||||
}
|
||||
token = handle_auth(**endpoint)
|
||||
|
||||
@@ -12,7 +12,7 @@ def setup_tower_managed_defaults(apps, schema_editor):
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('main', '0123_drop_hg_support'),
|
||||
('main', '0129_unifiedjob_installed_collections'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
Reference in New Issue
Block a user