vkagamlyk commented on code in PR #2686:
URL: https://github.com/apache/tinkerpop/pull/2686#discussion_r1683625256


##########
gremlin-python/src/main/python/gremlin_python/driver/serializer.py:
##########
@@ -386,10 +129,15 @@ def deserialize_message(self, message):
 
     def read_payload(self, buffer):
         results = []
-        while buffer.readable():
+        readable = True
+        while buffer.readable():  # find method or way to access readable 
bytes without using buffer.getvalue()
+            # print(buffer.tell())

Review Comment:
   nit



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to