diff --git a/octavia_dashboard/sdk_connection.py b/octavia_dashboard/sdk_connection.py index fe36f8e2..87e0e52a 100644 --- a/octavia_dashboard/sdk_connection.py +++ b/octavia_dashboard/sdk_connection.py @@ -43,7 +43,7 @@ def get_sdk_connection(request): auth=dict( project_id=request.user.project_id, project_domain_id=request.user.domain_id, - token=request.user.token.unscoped_token, + auth_token=request.user.token.unscoped_token, auth_url=request.user.endpoint), app_name='octavia-dashboard', app_version=octavia_dashboard.__version__) diff --git a/releasenotes/notes/fix-auth-issue-5226777261765699.yaml b/releasenotes/notes/fix-auth-issue-5226777261765699.yaml new file mode 100644 index 00000000..fd3b0bc6 --- /dev/null +++ b/releasenotes/notes/fix-auth-issue-5226777261765699.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Fixed an authentication issue with the OpenStack services. The dashboard + could not get the list of load balancers.