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