Skip to content

Commit 568aa27

Browse files
authored
Merge pull request #28 from TimotheeGerber/uaa_manifest
Fix adding UAA service in the manifest
2 parents e7d5c40 + 4ec87b1 commit 568aa27

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)