spmallette commented on code in PR #3483:
URL: https://github.com/apache/tinkerpop/pull/3483#discussion_r3547171729


##########
gremlin-python/src/main/python/gremlin_python/structure/io/graphbinaryV4.py:
##########
@@ -611,15 +620,15 @@ def objectify(cls, buff, reader, nullable=True):
     @classmethod
     def _read_edge(cls, b, r):
         edgeid = r.read_object(b)
-        # reading single string value for now according to GraphBinaryV4
-        edgelbl = r.to_object(b, DataType.list, False)[0]
+        # reading label list according to GraphBinaryV4
+        edge_labels = r.to_object(b, DataType.list, False)
         inv = Vertex(r.read_object(b), r.to_object(b, DataType.list, False)[0])

Review Comment:
   is this reading just one label here? shouldn't it have logic like: 
https://github.com/apache/tinkerpop/pull/3483/changes#diff-7edc32e7bbb6b01ded55bbe1951532cb2807d565792ddc0ac1ba917bf497a844R66
 ?



-- 
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