X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=inline;f=solution%2Fintegration%2Fsmo%2Fcommon%2Fidentity%2Fconfig.py;h=9c1ec2829cf416688ac0076c1895c2543f260f58;hb=e3d99fce3e2edd885aed524d095fd78fe5924099;hp=649026c109148cca5c1dadb7405f80ae1ddf3542;hpb=13a8f4e2f4a6cf0f4ac01260bd6b1c14b62975e3;p=oam.git diff --git a/solution/integration/smo/common/identity/config.py b/solution/integration/smo/common/identity/config.py index 649026c..9c1ec28 100644 --- a/solution/integration/smo/common/identity/config.py +++ b/solution/integration/smo/common/identity/config.py @@ -24,7 +24,7 @@ import getpass # global configurations # TODO: read from ../.env -base = 'http://localhost:8081' +base = 'https://identity:8463' username = 'admin' password = 'Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U' realmFile = os.path.dirname(os.path.abspath(__file__)) + '/o-ran-sc-realm.json' @@ -54,7 +54,7 @@ def getToken(): raise SystemExit(e) if response.status_code >= 200 and response.status_code < 300: - print('Got tocken!') + print('Got token!') return response.json()['access_token'] else: sys.exit('Getting token failed.')