Skip to content

Commit

Permalink
Merge pull request #419 from ModusCreateOrg/patch-upstream-418
Browse files Browse the repository at this point in the history
Fix #418, Windows Redis yields ValueError
  • Loading branch information
gmr committed Dec 16, 2015
2 parents f8c9d69 + bcf0439 commit 3d28c14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion newrelic_plugin_agent/plugins/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def fetch_data(self, connection):
values = dict()
for line in lines:
if ':' in line:
key, value = line.strip().split(':')
key, value = line.strip().split(':',1)
if key[:2] == 'db':
values[key] = dict()
subvalues = value.split(',')
Expand Down

0 comments on commit 3d28c14

Please sign in to comment.