Oliver Seemann

Results 3 comments of Oliver Seemann

Hey I can reproduce this class of issues by inserting a large json document (>64kb). In this case it's creating `AssertionError: Result length not requested length: Expected=2. Actual=0. Position: 500054....

I just checked the master code and it doesn't involve the key check anymore (we're using 0.1.10). So maybe that bug is fixed. What's the ETA for the next release?

I looked at the [changeset](https://github.com/sivy/pystatsd/commit/0cec82313fb312276b4aea924d6e2aa41fbfeae3) that fixes the problem. It now looks like this: ``` python timer = self.timers.setdefault(key, [ [], ts ]) timer[0].append(float(value or 0)) timer[1] = ts ```...