Commit a2f26361 authored by Dmitry Lebedev's avatar Dmitry Lebedev Committed by GitHub

Fix for numvalues parameter in Node.read_raw_history() (#1351)

* Fix for numvalues parameter in Node.read_raw_history()

* Fix for numvalues parameter in Node.read_raw_history() 2
parent c7013062
......@@ -551,7 +551,9 @@ class Node:
# No more data available
if continuation_point is None:
break
# No more data needed
if numvalues > 0:
break
return history
async def history_read(self, details, continuation_point=None):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment