Closed nfirvine closed 5 years ago
It returns ['<id> <key> <value>', ...]. Any reason not to return something like [(id, key, value), ...]?
['<id> <key> <value>', ...]
[(id, key, value), ...]
To be honest, I didn't have a specific reason back then. Do you see any benefits returning a tuple?
Jeez, I haven't worked on Haproxy stuff for ages. The tuple part doesn't matter so much, just that it's parsed.
It returns
['<id> <key> <value>', ...]
. Any reason not to return something like[(id, key, value), ...]
?