We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f60262 commit 6907801Copy full SHA for 6907801
1 file changed
hawkular/alerts.py
@@ -128,10 +128,9 @@ class Severity:
128
129
130
class HawkularAlertsClient(HawkularBaseClient):
131
- def list_triggers(self, ids=[], tags=[]):
132
- ids = ','.join(ids)
+ def list_triggers(self, tags=[]):
133
tags = ','.join(tags)
134
- url = self._service_url('triggers', {'tags': tags, 'ids': ids})
+ url = self._service_url('triggers', {'tags': tags})
135
triggers_dict = self._get(url)
136
return Trigger.list_to_object_list(triggers_dict)
137
0 commit comments