diff --git a/kernelci/api/helper.py b/kernelci/api/helper.py index 0c119dc66c..6eaf36bdfa 100644 --- a/kernelci/api/helper.py +++ b/kernelci/api/helper.py @@ -51,9 +51,10 @@ def api(self): """API object""" return self._api - def subscribe_filters(self, filters=None, channel='node'): + def subscribe_filters(self, filters=None, channel='node', + promiscuous=False): """Subscribe to a channel with some added filters""" - sub_id = self.api.subscribe(channel) + sub_id = self.api.subscribe(channel, promiscuous) self._filters[sub_id] = filters return sub_id