Skip to content

Commit 4ec87b1

Browse files
Fix adding UAA service in the manifest
1 parent 61c7942 commit 4ec87b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

predix/admin/app.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ def create_uaa(self, admin_secret, **kwargs):
7878
uaa = predix.admin.uaa.UserAccountAuthentication(**kwargs)
7979
if not uaa.exists():
8080
uaa.create(admin_secret, **kwargs)
81-
uaa.add_to_manifest(self)
81+
82+
uaa.add_to_manifest(self)
8283
return uaa
8384

8485
def create_client(self, client_id=None, client_secret=None, uaa=None):

0 commit comments

Comments
 (0)