Github user ashwinisingh01 commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/868#discussion_r210117108
--- Diff: gremlin-dotnet/src/Gremlin.Net/Driver/Connection.cs ---
@@ -114,11 +116,18 @@ internal class Connection : IConnection
result.Add(d);
}
}
+
+ if (status.Code == ResponseStatusCode.Success ||
status.Code == ResponseStatusCode.NoContent)
+ {
+ statusAttributes = receivedMsg.Status.Attributes;
--- End diff --
I do not think I am very clear on this. But , based on what I get, you want
o strip down the @type and @value and build a internal map from @value, right ?
If yes, I would to prefer to pass the wire message from the server and let the
clients handle the message.
---