Skip to content

Commit

Permalink
MOD-6847: Extend INFO call to everything (#22)
Browse files Browse the repository at this point in the history
* Extend INFO call to everything

* Bump version to 0.15.0
  • Loading branch information
raz-mon committed May 22, 2024
1 parent a175693 commit 6ac406a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

setup(
name='redis-info-provider',
version='0.14.0',
version='0.15.0',
python_requires='>=2.7',
package_dir={'': 'src'},
packages=find_packages('src'),
Expand Down
2 changes: 1 addition & 1 deletion src/redis_info_provider/info_poller.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def _poll_shard(self, shard):

# Will be stopped by a call to Greenlet.kill()
while True:
info = redis_conn.info('all')
info = redis_conn.info('everything')
self.logger.debug('Polled shard %s', shard.id)
info['meta'] = {}
shard.info = info
Expand Down

0 comments on commit 6ac406a

Please sign in to comment.