all_tenants flag default value to false

Change-Id: Idca1ea5a82f55639fe9d2a993226e061836ec41e
This commit is contained in:
Noam Bloom 2016-10-06 12:34:10 +00:00
parent 706816e01f
commit eba6e59fe9
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ class Alarm(object):
def __init__(self, api): def __init__(self, api):
self.api = api self.api = api
def list(self, vitrage_id, all_tenants): def list(self, vitrage_id, all_tenants='0'):
"""Get a all alarms on entity """Get a all alarms on entity
:param vitrage_id: the id for the entity :param vitrage_id: the id for the entity

View File

@ -17,7 +17,7 @@ class Rca(object):
def __init__(self, api): def __init__(self, api):
self.api = api self.api = api
def get(self, alarm_id, all_tenants): def get(self, alarm_id, all_tenants='0'):
"""Get RCA for an alarm """Get RCA for an alarm
:param alarm_id: the id of the alarm :param alarm_id: the id of the alarm