You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nevermind, this was an error in a hacky test script I used, which called bytes() passing an integer value while building a big WriteBatch. In Python 2 this works:
$ python2 -c 'print(bytes(10))'
10
In Python 3 this would add huge strings, causing out of memory errors quite easily:
See #35 (comment) for a bit more details.
The text was updated successfully, but these errors were encountered: