Skip to content

Commit

Permalink
Merge pull request #10 from signalfx/SWAT-2218
Browse files Browse the repository at this point in the history
set max split to 1
  • Loading branch information
benkeith-splunk authored Nov 5, 2020
2 parents 4935a4f + 47bd69a commit ddc7979
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def parse_info(self, info_lines):
collectd.warning("redis_info plugin: Bad format for info line: %s" % line)
continue

key, val = line.split(":")
key, val = line.split(":", 1)

# Handle multi-value keys (for dbs and slaves).
# db lines look like "db0:keys=10,expire=0"
Expand Down

0 comments on commit ddc7979

Please sign in to comment.