commit | 2d20057fd134e440e5abdc002f7d373e7d7e8a8f | [log] [tgz] |
---|---|---|
author | Scott Baker <smbaker@gmail.com> | Thu May 25 10:52:00 2017 -0700 |
committer | Scott Baker <smbaker@gmail.com> | Thu May 25 19:46:29 2017 -0700 |
tree | 5273469d9a54e6c6a61cc012e225d6242aba7414 | |
parent | baf92789e2a3e1a6bfed07168a68ce5c66c0d7b7 [diff] [blame] |
CORD-1244 cleanup use of get_tenant/get_service Change-Id: I89474025859ad0d0faf148b5c25706035908c71f
diff --git a/xos/tosca/resources/onosapp.py b/xos/tosca/resources/onosapp.py index 0c7490a..39b3a2b 100644 --- a/xos/tosca/resources/onosapp.py +++ b/xos/tosca/resources/onosapp.py
@@ -23,7 +23,7 @@ return args def get_existing_objs(self): - objs = ONOSApp.get_tenant_objects().all() + objs = ONOSApp.objects.all() objs = [x for x in objs if x.name == self.obj_name] return objs