Skip to content

Commit

Permalink
Add missing argument to remove method.
Browse files Browse the repository at this point in the history
ZEN-35078
  • Loading branch information
jpeacock-zenoss committed Sep 30, 2024
1 parent 317594e commit 7a35524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Products/ZenCollector/configcache/cli/remove.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def run(self):
initialize_environment(configs=self.configs, useZope=False)
client = getRedisClient(url=getRedisUrl())
store = createObject("deviceconfigcache-store", client)
self._remove(self._get(store, haswildcard))
self._remove(store, self._get(store, haswildcard))

def _get(self, store, haswildcard):
query = self._make_query(haswildcard)
Expand Down

0 comments on commit 7a35524

Please sign in to comment.