Skip to content

Commit

Permalink
set max split to 1
Browse files Browse the repository at this point in the history
Signed-off-by: Dani Louca <[email protected]>
  • Loading branch information
dloucasfx committed Nov 5, 2020
1 parent 4935a4f commit 47bd69a
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 47bd69a

Please sign in to comment.