Skip to content

Commit 1fb421b

Browse files
Fix Authorization header for slat call
1 parent 4c34abd commit 1fb421b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/providers/sla.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def is_enabling_services(deployment_type, service_type):
5252

5353

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

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

0 commit comments

Comments
 (0)