librenms/librenms-agent

Support IPv6 configurations in redis.py

tuxis-ie opened this issue · 0 comments

k, v = d.split(b":")

This line breaks setups using IPv6. Easy fixed with

        k, v = d.split(b":", 1)