Skip to content

Commit

Permalink
Merge pull request #4566 from zenoss/bugfix/ZEN-35078.6x
Browse files Browse the repository at this point in the history
Add missing argument to `remove` method.
  • Loading branch information
jpeacock-zenoss authored Sep 30, 2024
2 parents 317594e + 7a35524 commit 5dd1c22
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 5dd1c22

Please sign in to comment.