Skip to content

Commit

Permalink
Fix Authorization header for slat call
Browse files Browse the repository at this point in the history
  • Loading branch information
maricaantonacci authored Feb 16, 2021
1 parent 4c34abd commit 1fb421b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/providers/sla.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def is_enabling_services(deployment_type, service_type):


def get_slas(access_token, slam_url, cmdb_url, deployment_type=""):
headers = {'Authorization': 'bearer %s' % access_token}
headers = {'Authorization': 'Bearer %s' % access_token}

url = slam_url + "/preferences/" + session['organisation_name']

Expand Down

0 comments on commit 1fb421b

Please sign in to comment.